2

在使用 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() 有什么区别?

4

0 回答 0