Anonymous methods and delegates(匿名方法和委托)
问题描述
我试图理解为什么 BeginInvoke 方法不接受匿名方法.
I try to understand why a BeginInvoke method won't accept an anonymous method.
void bgWorker_ProgressChanged(object sender, ProgressChangedEventArgs e)
{
if (InvokeRequired)
{
//Won't compile
BeginInvoke(delegate(object sender, ProgressChangedEventArgs e)
{ bgWorker_ProgressChanged(sender, e); });
}
progressBar1.Increment(e.ProgressPercentage);
}
它告诉我无法从匿名方法"转换为System.Delegate",而当我将匿名方法转换为委托时它确实有效?
It tells me 'cannot convert from 'anonymous method' to 'System.Delegate' while when I cast the anonymous method to a delegate it does work ?
BeginInvoke((progressDelegate)delegate { bgWorker_ProgressChanged(sender, e); });
推荐答案
Delegate 类是委托类型的基类.但是,只有系统和编译器可以显式地从 Delegate 类或 MulticastDelegate 类派生.也不允许从委托类型派生新类型.Delegate 类不被视为委托类型;它是一个用于派生委托类型的类.来源 -- MSDN
The Delegate class is the base class for delegate types. However, only the system and compilers can derive explicitly from the Delegate class or from the MulticastDelegate class. It is also not permissible to derive a new type from a delegate type. The Delegate class is not considered a delegate type; it is a class used to derive delegate types. Source -- MSDN
因此需要显式强制转换为派生自委托类型.当您为 System.Delegate 类型的参数传递匿名方法时,您会遇到这个特定的编译器错误——幸运的是,这种情况很少见.这太灵活了.
Hence the need for the explicit cast to a derived-from-Delegate type. You'd encounter this particular compiler error when you pass an anonymous method for a parameter of System.Delegate type - fortunately this is a rare scenario. That's just too much flexibility.
delegate void MyDelegate();
static void DoSomething_Flexible(Delegate d)
{ d.DynamicInvoke(); }
static void DoSomething_Usable(MyDelegate d)
{ d(); }
static void Main(string[] args)
{
// requires explicit cast else compile error Error "Cannot convert anonymous method to type 'System.Delegate' because it is not a delegate type
DoSomething_Flexible((MyDelegate) delegate { Console.WriteLine("Flexible is here!"); });
// Parameter Type is a .NET Delegate, no explicit cast needed here.
DoSomething_Usable(delegate { Console.WriteLine("Usable is here!"); });
}
此页面由 Ian Griffith 了解更多信息.(见注释标题后的段落)
More on this at this page by Ian Griffith. (See the paras after the Notes header)
这篇关于匿名方法和委托的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:匿名方法和委托
基础教程推荐
- C# 从 List<List<int>> 中删除重 2022-01-01
- 当值可以是对象或空数组时反序列化 JSON 2022-01-01
- .NET SerialPort DataReceived 事件未触发 2022-01-01
- 我应该在后面的代码中直接使用 Linq To SQL 还是使 2022-01-01
- Azure Functions:CosmosDBTrigger 未在 Visual Studio 中触发 2022-01-01
- WPF 模态进度窗口 2022-01-01
- 如何使用 .Net 检查 Active Directory 服务器是否已启动并正在运行? 2022-01-01
- 禁止输入少量字符,例如'<'、'&a 2022-01-01
- 如果有人提交恶意软件Nuget包怎么办? 2022-01-01
- Moq It.Is<>不匹配 2022-01-01
