C# 中是否有我可以用于调用的标准委托。我是否必须为我必须调用的每个新函数签名声明一个新委托?
现在我只有那些签名。但是,如果我可以使用本机委托来处理任何复杂的返回和参数,那就太好了。
public bool isDone()
{...}
public void doStuff()
{...}
public void doMoreStuff(object o)
{...}
public void doEvenMoreStuff(string str)
{...}
// I'm declaring my "custom" delegates like this:
private delegate bool delegate_bool();
private delegate void delegate_void(string line);
// and calling via
if (InvokeRequired)
Invoke(new delegate_void(doStuff), new object[] { });
else
{...}
编辑:答案似乎是Action<>和Func<>。
if (InvokeRequired)
return Invoke(new Func<bool>(isDone), new object[] { });
else
{...}
if (InvokeRequired)
BeginInvoke(new Action(doStuff), new object[] { });
else
{...}
if (InvokeRequired)
BeginInvoke(new Action<string>(doEvenMoreStuff), new object[] { "hello world" });
else
{...}