gpt4 book ai didi

c# - 当枚举类型仅在运行时已知时如何枚举枚举?

转载 作者:行者123 更新时间:2023-11-30 16:09:46 24 4
gpt4 key购买 nike

我在 stackoverflow 上找到了这个枚举某种类型的枚举的答案:

var values = (SomeType[])Enum.GetValues(typeof(SomeType));

如果我对枚举类型进行硬编码,这将非常有效。但我需要能够在运行时设置类型。我尝试了以下方法,但这不起作用:

var values = (typeof(T)[])Enum.GetValues(typeof(T));

最佳答案

public static IEnumerable<T> GetValues<T>()
{
return Enum.GetValues(typeof(T)).Cast<T>();
}

参见 fiddle

关于c# - 当枚举类型仅在运行时已知时如何枚举枚举?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27090895/

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