C# 遍历枚举

public enum ManageFunction_CHN { 上传文件 = 10, 审核文件 = 20, 管理文件 = 30, 管理员工 = 40, 设置参数 = 50 } //遍历 String[] EnumFuncTitle=Enum.GetNames(typeof(ManageFunction_CHN)); Int32 intCnt = 0; foreach(Int32 intValue in Enum.GetValues(typeof(ManageFunction_CHN))) { CheckBoxList.Items.Add(new ListItem(EnumFuncTitle[intCnt], intValue.ToString())); intCnt += 1; } 

你可能感兴趣的:(String,C#)