C# Generics won#39;t allow Delegate Type Constraints(C# 泛型不允许委托类型约束)
问题描述
是否可以在 C# 中定义一个类
Is it possible to define a class in C# such that
class GenericCollection<T> : SomeBaseCollection<T> where T : Delegate
昨晚我无法在 .NET 3.5 中完成此任务.我尝试使用
I couldn't for the life of me accomplish this last night in .NET 3.5. I tried using
委托,委托,行动<T>和 Func<T,T>
在我看来,这在某种程度上应该是允许的.我正在尝试实现自己的 EventQueue.
It seems to me that this should be allowable in some way. I'm trying to implement my own EventQueue.
我最终只是做了这个[请注意原始近似].
I ended up just doing this [primitive approximation mind you].
internal delegate void DWork();
class EventQueue {
private Queue<DWork> eventq;
}
但是我失去了为不同类型的函数重用相同定义的能力.
But then I lose the ability to reuse the same definition for different types of functions.
想法?
推荐答案
许多类作为通用约束不可用 - Enum 是另一个.
A number of classes are unavailable as generic contraints - Enum being another.
对于委托,您可以获得的最接近的是:class",可能使用反射来检查(例如,在静态构造函数中)T 是委托:
For delegates, the closest you can get is ": class", perhaps using reflection to check (for example, in the static constructor) that the T is a delegate:
static GenericCollection()
{
if (!typeof(T).IsSubclassOf(typeof(Delegate)))
{
throw new InvalidOperationException(typeof(T).Name + " is not a delegate type");
}
}
这篇关于C# 泛型不允许委托类型约束的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:C# 泛型不允许委托类型约束


基础教程推荐
- 在 VS2010 中的 Post Build 事件中将 bin 文件复制到物 2022-01-01
- 首先创建代码,多对多,关联表中的附加字段 2022-01-01
- 从 VS 2017 .NET Core 项目的发布目录中排除文件 2022-01-01
- 全局 ASAX - 获取服务器名称 2022-01-01
- 经典 Asp 中的 ResolveUrl/Url.Content 等效项 2022-01-01
- JSON.NET 中基于属性的类型解析 2022-01-01
- 是否可以在 asp classic 和 asp.net 之间共享会话状态 2022-01-01
- 如何动态获取文本框中datagridview列的总和 2022-01-01
- 将事件 TextChanged 分配给表单中的所有文本框 2022-01-01
- 错误“此流不支持搜索操作"在 C# 中 2022-01-01