Visual Studio命令行参数

作者:追风剑情 发布于:2017-6-30 9:55 分类:C#

示例:

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace ArgTest
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. for (int i = 0; i < args.Length; i++)
  14. Console.WriteLine(args[i]);
  15. Console.Read();
  16. }
  17. }
  18. }

运行测试

参数之间用空格隔开

2222.png

11111.png

如果参数中有空格,则需用引号括起来

44444.png

3333.png

标签: C#

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号