日期:2014-05-17 浏览次数:21185 次
static void Main(string[] args) { //使用args if(args.Length > 0) { Console.WriteLine(args[0]); } Console.ReadKey(); } ------解决方案--------------------xx.exe -a -b -c -d依据空格分割成字符串数组传入 args 里