C# 枚举类型转换字符串 Enum to string,枚举转换为下拉菜单 Enum DropDownList
时间:2011-01-14 来源:萧飒
EnumType
{
a=1,
b=2,
c=3
}
EnumType newtype=(EnumType)Enum.Parse(typeof(EnumType),"a");
string[] names=Emum.GetNames(typeof(EnumType));
Array values=Enum.GetValues(typeof(EnumType));
for(int i=0;i<values.length-1;i++)
{
DropDownList.Items.Add(new ListItem(names[i],values.GetValue(i)));
}
相关阅读 更多 +