gpt4 book ai didi

c# - 是否可以在 monotuch 中调用委托(delegate)?

转载 作者:太空宇宙 更新时间:2023-11-03 22:16:39 25 4
gpt4 key购买 nike

我有以下内容使用系统;

namespace mtSpec
{
public class SpecElement
{
public SpecElement (Delegate action, string name)
{
Name = name;
this.ActionToTake = action;
}

public Delegate ActionToTake {get; set;}
public string Name {get; set; }

public bool Execute()
{
try {
this.ActionToTake.DynamicInvoke();
return true;
} catch (Exception ex) {
return false;
}
}
}
}

调用 Execute 总是在 DynamicInvoke() 点导致以下结果:

  • Assertion: should not be reached at ../../../../mono/mini/debugger-agent.c:3092

我错过了什么吗?请问如何调用我的委托(delegate)?

埃斯科兹?米格尔?有人吗?

最佳答案

你可以写

something();

关于c# - 是否可以在 monotuch 中调用委托(delegate)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4903111/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com