在以下使用JINT的代码中,对Setup1方法的调用有效,而对Setup2方法的调用无效。调用Setup2会引发错误:Jint.Runtime.JavaScriptException:'未找到具有指定参数的公共方法。'
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp4
{
public delegate bool DoFunction();
public class TestClass
{
public TestClass() { }
public void Setup1(Func<bool> fn)
{
bool b = fn();
}
public void Setup2(DoFunction fn)
{
bool b = fn();
}
}
class Program
{
static void Main(string[] args)
{
Jint.Engine _engine = new Jint.Engine();
_engine.SetValue("test", new TestClass());
_engine.Execute("test.Setup1(function() { return true; })");
_engine.Execute("test.Setup2(function() { return true; })");
}
}
}
那么为什么对Setup2的调用失败? Func和委托DoFunction()有什么区别?