0

如何在 IronRuby 下的 ScriptScope 上设置委托?我尝试了上面的代码,但在调用函数时出现了 ArgumentException。

scope.SetVariable("import", new Action<string>(DSLImport));

import "Data"

另外,如何使用上述代码将块作为回调发送到 C# 代码?

import "Data" do |f|
    f.foo = false
end
4

1 回答 1

0

我找到了一种可能不是最好但有效的方法。它是 ScriptScope 的扩展方法:

public static void SetMethod(this ScriptScope scope, string name, Delegate method)
{
    scope.SetVariable(name + "__delegate", method);
    scope.Engine.Execute("def " + name + "(*args, &block)\nargs.push block if block != nil\n" + name + "__delegate.invoke(*args)\nend", scope);
}
于 2013-02-08T21:29:44.470 回答