我正在尝试使用python中的C#类,在mono / ubuntu上使用python.net。
到目前为止,我设法用一个参数工作做一个简单的函数调用。我现在要做的是将python回调传递给C#函数调用。
我在下面尝试了以下变化,没有效果。有人能说明如何做到这一点吗?
// C# - testlib.cs
class MC {
public double method1(int n) {
Console.WriteLine("Executing method1" );
/* .. */
}
public double method2(Delegate f) {
Console.WriteLine("Executing method2" );
/* ... do f() at some point ... */
/* also tried f.DynamicInvoke() */
Console.WriteLine("Done executing method2" );
}
}
Python脚本
import testlib, System
mc = testlib.MC()
mc.method1(10) # that works
def f():
print "Executing f"
mc.method2(f)
# does not know of method2 with that signature, fair enough...
# is this the right way to turn it into a callback?
f2 = System.AssemblyLoad(f)
# no error message, but f does not seem to be invoked
mc.method2(f2)
答案 0 :(得分:3)
尝试传递Action
或Func
而不仅仅是原始函数:
我在这里使用了IronPython(因为我现在没有在我的任何机器上安装单声道,但根据Python.NET documentation我认为它应该可行
实际上你的代码几乎没问题,但你需要导入Action
或Func
委托取决于你需要的。
python代码:
import clr
from types import *
from System import Action
clr.AddReferenceToFileAndPath(r"YourPath\TestLib.dll")
import TestLib
print("Hello")
mc = TestLib.MC()
print(mc.method1(10))
def f(fakeparam):
print "exec f"
mc.method2(Action[int](f))
这是一个控制台输出:
Hello
Executing method1
42.0
Executing method2
exec f
Done executing method2
C#代码:
using System;
namespace TestLib
{
public class MC
{
public double method1(int n)
{
Console.WriteLine("Executing method1");
return 42.0;
/* .. */
}
public double method2(Delegate f)
{
Console.WriteLine("Executing method2");
object[] paramToPass = new object[1];
paramToPass[0] = new int();
f.DynamicInvoke(paramToPass);
Console.WriteLine("Done executing method2");
return 24.0;
}
}
}
我再次阅读Python.net Using Generics的文档,并且发现此Python.NET Naming and resolution of generic types看起来需要明确指定参数类型
(反射)泛型类型定义(如果存在泛型类型) 定义与 给定基本名称,没有具有该名称的非泛型类型)。这种通用类型 可以使用[]语法将定义绑定到封闭的泛型类型中。尝试去 使用()实例化泛型类型def会引发TypeError。
答案 1 :(得分:2)
看起来你应该明确定义你的代表:
class MC {
// Define a delegate type
public delegate void Callback();
public double method2(Callback f) {
Console.WriteLine("Executing method2" );
/* ... do f() at some point ... */
/* also tried f.DynamicInvoke() */
Console.WriteLine("Done executing method2" );
}
}
然后从Python代码(这是基于docs的粗略猜测):
def f():
print "Executing f"
# instantiate a delegate
f2 = testlib.MC.Callback(f)
# use it
mc.method2(f2)