博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
c#之第三课
阅读量:6582 次
发布时间:2019-06-24

本文共 723 字,大约阅读时间需要 2 分钟。

学习获取终端输入的参数并且打印,以及使用循环。

using System;public class CommandLine{   public static void Main(string[] args)  // 需要参数   {       // The Length property is used to obtain the length of the array.        // Notice that Length is a read-only property:       Console.WriteLine("Number of command line parameters = {0}",          args.Length);       for(int i = 0; i < args.Length; i++)  // 循环       {           Console.WriteLine("Arg[{0}] = [{1}]", i, args[i]);       }   }}

 

using System;public class CommandLine2{   public static void Main(string[] args)   {       Console.WriteLine("Number of command line parameters = {0}",          args.Length);       foreach(string s in args)       {          Console.WriteLine(s);       }   }}

 

转载地址:http://psnno.baihongyu.com/

你可能感兴趣的文章
js检查浏览器是否处于隐身模式
查看>>
left join 多表关联查询
查看>>
Kali Linux的介绍
查看>>
登陆中session的处理
查看>>
Hibernate简单分页
查看>>
【技巧】使用weeman来做一个钓鱼网页
查看>>
Arcgis engine 指定图层对要素进行创建、删除等操作
查看>>
python中的Iterable, Iterator,生成器概念
查看>>
scala匿名函数
查看>>
浅析Java.lang.Runtime类
查看>>
LightGallery.js – 功能齐全的 Javascript Lightbox
查看>>
SQL Server中常用全局变量介绍
查看>>
前端学HTTP之连接管理
查看>>
WinForm 之 程序启动不显示主窗体
查看>>
ios硬件编码
查看>>
【Network】Calico, Flannel, Weave and Docker Overlay Network 各种网络模型之间的区别
查看>>
【转】Oracle索引的类型
查看>>
ActiveMQ使用示例之Topic
查看>>
FragmentTransaction.replace() 你不知道的坑
查看>>
分布式消息队列 Kafka
查看>>