Answers for "run python code ising c#"

3

run python script from c#

using IronPython.Hosting;
using Microsoft.Scripting.Hosting;

private static void doPython()
{
    ScriptEngine engine = Python.CreateEngine();
    engine.ExecuteFile(@"test.py");
}

//You can get IronPython here : https://ironpython.net/
Posted by: Guest on July-09-2021
-1

run python from c#

string strCmdText;
string file;
file = "py.py"
strCmdText= "python3" + file;
System.Diagnostics.Process.Start("CMD.exe",strCmdText);
Posted by: Guest on July-21-2021

Python Answers by Framework

Browse Popular Code Answers by Language