大家帮我看看我的程序!谢谢了
大家好,我最近写了个程序,但是运行的时候说越界,我就不知道怎么弄了。大家帮我看看,谢谢了 using System;
class listArg0 { public static void Main(String[] args) { string strName; //声明一个string类型的值变量 strName = args[0]; //把第一个参数赋给变量strName Console.WriteLine("This is the first argument: {0}!", strName); //格式化输出第一个参数 } }