更新:2007 年 11 月

循环访问数组的另一种方法是使用 foreach 语句,如下面的示例所示。foreach 语句可以用于循环访问数组、.NET Framework 集合类或任何实现 IEnumerable 接口的类或结构。

说明:

在 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
*/

请参见