commandline argument parameter limitation

前端 未结 8 1747
伪装坚强ぢ
伪装坚强ぢ 2021-02-08 09:39

Language: C# I have to pass a huge string array (built dynamically) as an argument to run an exe. I am thinking of acheiving it by the below 2 ways. But I am not feeling confid

8条回答
  •  误落风尘
    2021-02-08 10:29

    If you are passing 10,000 arguments to a program, you should be putting those arguments in a file and reading the file from disk.

提交回复
热议问题