string
Gets the version of the Python engine.
The following code reports the engine version.
var env = PythonEnvironment.Current; var options = new PythonOptions(); options.Initialize(env, null); var engine = new PythonEngine(env); Console.WriteLine(engine.Version);