将 c# 类型注入 Ironpython
Injecting c# type into Ironpython
现在我可以使用以下代码访问 IronPython
中的 c#
类型,如下所示
import clr
clr.AddReference('myDLL.dll')
import myType
obj = myType()
但是我不希望脚本开发人员在 Python
源代码中有 clr.AddReference('myDLL.dll')
行,并注入 myDLL.dll
(and/or a c#
class) 直接从 c#
进入 ScriptEngine 因此之前的代码将类似于:
import myType
obj = myType()
我怎样才能做到这一点?
您可以使用以下解决方案解决此问题:
ScriptRuntime runtime = Python.CreateRuntime();
runtime.LoadAssembly(Assembly.GetAssembly(typeof(MyNameSpace.MyClass)));
ScriptEngine eng = runtime.GetEngine("py");
ScriptScope scope = eng.CreateScope();
ScriptSource src = eng.CreateScriptSourceFromString(MySource, SourceCodeKind.Statements);
var result = src.Execute(scope);
现在,在 python 脚本中您可以编写:
from MyNameSpace import *
n=MyClass()
print n.DoSomeThing()
现在我可以使用以下代码访问 IronPython
中的 c#
类型,如下所示
import clr
clr.AddReference('myDLL.dll')
import myType
obj = myType()
但是我不希望脚本开发人员在 Python
源代码中有 clr.AddReference('myDLL.dll')
行,并注入 myDLL.dll
(and/or a c#
class) 直接从 c#
进入 ScriptEngine 因此之前的代码将类似于:
import myType
obj = myType()
我怎样才能做到这一点?
您可以使用以下解决方案解决此问题:
ScriptRuntime runtime = Python.CreateRuntime();
runtime.LoadAssembly(Assembly.GetAssembly(typeof(MyNameSpace.MyClass)));
ScriptEngine eng = runtime.GetEngine("py");
ScriptScope scope = eng.CreateScope();
ScriptSource src = eng.CreateScriptSourceFromString(MySource, SourceCodeKind.Statements);
var result = src.Execute(scope);
现在,在 python 脚本中您可以编写:
from MyNameSpace import *
n=MyClass()
print n.DoSomeThing()