Standard delegates in C#(C# 中的标准委托)
问题描述
在 C# 中预定义了一些委托
There are some Delegates predefined in C#
我知道这些:
EventHandler // Default event callbacks
EventHandler<T> // Default event callbacks with custom parameter (inheriting from EventArgs)
Action // Function without return value and without parameter
Action<T1, T2, T3, T4> // Function without return value and 1-4 parameters
Func<T1, T2, T3, T4, TResult> // Methos with 0-4 parameters and one result type
Predicate<T> // equivalent to Func<T, bool>
对于特殊情况和框架的生成表单部分还有很多,但这些通常很适合用于自行编写的代码.
There are many more for special cases and generated form parts of the framework, but these are often good to use in self written code.
如果你知道一些更有用的添加它们.否则,这是回答.
If you know some more useful add them. Otherwise this is answered.
推荐答案
它们没有在 C# 中预定义.它们由框架定义.
They're not predefined in C#. They're defined by the framework.
Action
和 Func
委托系列比您所展示的要宽 - 它们上升到
The Action
and Func
delegate families are wider than you've shown - they go up to
Action<T1, T2, T3, T4>
和
Func<T1, T2, T3, T4, TResult>
.NET 2.0 中另一个常见的列表操作(在 LINQ 之前)是 Predicate<T>
.
Another common-ish one in .NET 2.0 for list manipulation (before LINQ) is Predicate<T>
.
使用线程:
ThreadStart
ParameterizedThreadStart
WaitCallback
TimerCallback
AsyncCallback
这篇关于C# 中的标准委托的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:C# 中的标准委托
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- 输入按键事件处理程序 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04