摘要://枚举public enum Status{ Open=1, Cancel=2, Close=3}//需引用System.Reflection库using System.Reflection;//页面初始化时绑定DropDownListprotected void Page_Load(object sender, EventArgs e){ foreach (FieldInfo field in typeof(Status).GetFields()) { if (!field.IsSpecial...
阅读全文