How do I hide a console application user interface when using Process.Start?

后端 未结 4 1444
挽巷
挽巷 2021-02-14 19:59

I want to run a console application that will output a file.

I user the following code:

Process barProcess = Process.Start(\"bar.exe\", @\"C:\\foo.txt\")         


        
4条回答
  •  夕颜
    夕颜 (楼主)
    2021-02-14 20:46

    We have done this in the past by executing our processes using the Command Line programatically.

提交回复
热议问题