Bind Enum data to Dropdown List By Sorting





0/5 (0 vote)
here is what I do to iterate through enumpublic static ABC(Type enumType){ foreach (Enum e in Enum.GetValues(enumType)) { int tvalue = Convert.ToInt32(e); string tname = e.ToString(); }}
here is what I do to iterate through enum
public static ABC(Type enumType) { foreach (Enum e in Enum.GetValues(enumType)) { int tvalue = Convert.ToInt32(e); string tname = e.ToString(); } }