我正在尝试使用Action<string, bool>
委托类型来调用Dispatcher.Invoke
与 detegate 一起使用的命名方法
private void SomeMethod(string name,out bool result)
{
...
}
当我使用以下内容时,它给出了一个错误,说与签名不匹配。
Dispatcher.Invoke(new Action<string, bool>(SomeMethod),new Object[2]{name, result});
我在这里做错了什么。请纠正我。