Answers for "how to can execute python script inside 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

Code answers related to "how to can execute python script inside C#?"

Python Answers by Framework

Browse Popular Code Answers by Language