枚举类型转换Tips
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)));
}