📌  相关文章
📜  从 c# 运行 python 脚本 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:27.790000             🧑  作者: Mango

代码示例3
string strCmdText;
string file;
file = "py.py"
strCmdText= "python3" + file;
System.Diagnostics.Process.Start("CMD.exe",strCmdText);