更新:2007 年 11 月
循环访问数组的另一种方法是使用
说明: |
---|
在 Visual Studio 中运行应用程序时,可以在 |
示例
下面的示例演示如何使用 foreach 输出命令行参数。
C# | 复制代码 |
---|---|
// arguments: John Paul Mary
|
C# | 复制代码 |
---|---|
class CommandLine2 { static void Main(string[] args) { System.Console.WriteLine("Number of command line parameters = {0}", args.Length); foreach (string s in args) { System.Console.WriteLine(s); } } } /* Output: Number of command line parameters = 3 John Paul Mary */ |