c#Enum的用法

public enum ResType
{
Role = 0,
Dept = 1,
Group = 2,
Site = 3,
Org = 4,
Sub=8
}

这里定义了一个enum    ResType

用ResType type=ResType.Sub 可以定义一个枚举,(int)type得到的结果是8,type.ToString() ,结果是"Sub"

上一篇:CentOS 6.4安装mongo的php扩展包


下一篇:centos yum安装mongodb,php扩展