Calling python script from C#

前端 未结 3 1091
一整个雨季
一整个雨季 2021-02-10 19:22

I have a C# code which helps to run python environment first and then it executes my python process. But the problem is it takes a lot of time to execute.

Actually i j

3条回答
  •  死守一世寂寞
    2021-02-10 20:11

    You'll need to create a new process in order to call your program.

    look at this : C# equivalent to fork()/exec()

提交回复
热议问题