where T : Enum"不工作-6ren"> where T : Enum"不工作- 这个问题在这里已经有了答案: 关闭 11 年前。 Possible Duplicate: Create Generic method constraining T to an Enum 为什么我们不-6ren">
gpt4 book ai didi

c# - "Class of where T : Enum"不工作

转载 作者:可可西里 更新时间:2023-11-01 07:51:06 24 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
Create Generic method constraining T to an Enum

为什么我们不能在 C# 中执行此操作?而且,如果可能的话,我怎样才能做类似的事情!

我想要什么:

public class<T> ATag where T : enum {
[Some code ..]
}

public class<T> classBase where T : enum {
public IDictionary<T, string> tags { get; set; }
}

因此,当需要调用它时,我很确定只会获得我的枚举值之一。

public class AClassUsingTag : classBase<PossibleTags> {
public void AMethod(){
this.tags.Add(PossibleTags.Tag1, "Hello World!");
this.tags.Add(PossibleTags.Tag2, "Hello Android!");
}
}

public enum PossibleTags {
Tag1, Tag2, Tag3
}

错误信息:“Constraint cannot be special class 'System.Enum'”

谢谢!

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com