enum 数组怎么使用
发布网友
发布时间:2022-09-25 20:54
我来回答
共2个回答
热心网友
时间:2023-09-21 09:25
枚举。
一、Enum的定义
public enum UserRolesType
{
UnKnown=0,
BaseSimple=70,
BaseBasic=71,
BaseExtend=72,
BaseBasic2=88,
BaseSimple2=89,
BaseExtend2=90
}
方法一:
根据ID获取枚举对象
protected UserRolesType GetEnum(int t)
{
bool isInEnum = false;
UserRolesType c = UserRolesType.UnKnown;
if (t > 0)
{
foreach(int i in Enum.GetValues(typeof(UserRolesType)))
{
if (i == t)
{
//this.Debug(t.ToString(), "");
c =(UserRolesType)Enum.Parse(typeof(UserRolesType),i.ToString());
isInEnum = true;
return c;
//(Colors)Enum.Parse(typeof(Colors), "Red, Yellow");
}
}
if (isInEnum == false)
{
return UserRolesType.UnKnown;
}
}
return c;
}
方法二:根据ID获取枚举名称
protected string GetEnumName(int s)
{
string str=Enum.GetName(typeof(UserRolesType), s);
if (str == null)
{
str = UserRolesType.UnKnown.ToString();
}
return str;
}
热心网友
时间:2023-09-21 09:26
enum 是枚举类,数组是数组,两者不是一个概念。
enum 就是定义好若干可能值(枚举值),便于代码的维护和管理。
比如,存在一个类 People,有一个属性 Sex。Sex 显然所有的可能值只有两个,Male 和 Female。
那么我们可以定义一个枚举类:
public enum ESex
{
Male,
Female
}
在给 Sex 属性赋值时,只需要:
People.Sex = ESex.Male;
再比如,Color 就是一个枚举类,里面包含了若干可能值。
热心网友
时间:2023-09-21 09:25
枚举。
一、Enum的定义
public enum UserRolesType
{
UnKnown=0,
BaseSimple=70,
BaseBasic=71,
BaseExtend=72,
BaseBasic2=88,
BaseSimple2=89,
BaseExtend2=90
}
方法一:
根据ID获取枚举对象
protected UserRolesType GetEnum(int t)
{
bool isInEnum = false;
UserRolesType c = UserRolesType.UnKnown;
if (t > 0)
{
foreach(int i in Enum.GetValues(typeof(UserRolesType)))
{
if (i == t)
{
//this.Debug(t.ToString(), "");
c =(UserRolesType)Enum.Parse(typeof(UserRolesType),i.ToString());
isInEnum = true;
return c;
//(Colors)Enum.Parse(typeof(Colors), "Red, Yellow");
}
}
if (isInEnum == false)
{
return UserRolesType.UnKnown;
}
}
return c;
}
方法二:根据ID获取枚举名称
protected string GetEnumName(int s)
{
string str=Enum.GetName(typeof(UserRolesType), s);
if (str == null)
{
str = UserRolesType.UnKnown.ToString();
}
return str;
}
热心网友
时间:2023-09-21 09:26
enum 是枚举类,数组是数组,两者不是一个概念。
enum 就是定义好若干可能值(枚举值),便于代码的维护和管理。
比如,存在一个类 People,有一个属性 Sex。Sex 显然所有的可能值只有两个,Male 和 Female。
那么我们可以定义一个枚举类:
public enum ESex
{
Male,
Female
}
在给 Sex 属性赋值时,只需要:
People.Sex = ESex.Male;
再比如,Color 就是一个枚举类,里面包含了若干可能值。