65.9K
CodeProject is changing. Read more.
Home

Bind Enum data to Dropdown List By Sorting

Dec 30, 2010

CPOL
viewsIcon

5946

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(); }}