我需要指定Generic类型只应在闭合类型中接受枚举类型。如果约束不起作用,有人可以建议一种方法吗?
答案 0 :(得分:5)
您不能直接在C#中执行此操作 - 枚举类型不能用作约束。一个选项(grungy)是使用类型初始化器(静态构造函数)在运行时进行检查。它会在运行时使用不合适的类型来阻止它,但不能在编译时使用它。
class Foo<T> where T : struct {
static Foo() {
if (!typeof(T).IsEnum) {
throw new InvalidOperationException("Can only use enums");
}
}
public static void Bar() { }
}
enum MyEnum { A, B, C }
static void Main() {
Foo<MyEnum>.Bar(); // fine
Foo<int>.Bar(); // error
}
答案 1 :(得分:2)
最近的约束是struct:
C类&lt; E&gt;其中E:/ * enum * / struct
如果你需要确保它是枚举使用typeof(E).IsEnum
答案 2 :(得分:0)
既然你说你不能使用约束,那么我想到的唯一其他解决方案是使用动态强制转换并在运行时检查结果。使用约束作为解决方案,这是最糟糕的。但是,here您可以找到可能有帮助的文章。