gpt4 book ai didi

c# - 列表中的枚举值

转载 作者:太空狗 更新时间:2023-10-29 18:02:23 27 4
gpt4 key购买 nike

我有一个枚举类,

public enum USERTYPE
{
Permanant=1,
Temporary=2,
}

在我的业务对象中,我只是将此枚举声明为

private List<USERTYPE> userType=new List<USERTYPE>;

在 get/set 方法中,我试过这样

public List<USERTYPE> UserType
{
get
{
return userType;
}
set
{
userType= value;
}
}

这里它返回的行数为 0,我怎样才能在这里获取 Enum 中的所有值,有人能帮我吗...

最佳答案

您可以使用它来获取所有单独的枚举值:

private List<USERTYPE> userTypes = Enum.GetValues(typeof(USERTYPE)).Cast<USERTYPE>().ToList();

如果你经常做这样的事情,你可以为它创建一个通用的实用方法:

public static T[] GetEnumValues<T>() where T : struct {
if (!typeof(T).IsEnum) {
throw new ArgumentException("GetValues<T> can only be called for types derived from System.Enum", "T");
}
return (T[])Enum.GetValues(typeof(T));
}

关于c# - 列表中的枚举值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11240236/

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