C# 根据枚举名字获取值
try { var index = (int)Enum.Parse(typeof(Enums.DepartmentEnum), entity.Contract_No); this.contract_no.SelectedValue = index+""; }catch (Exception ex) { } public enum DepartmentEnum { 请选择科室名称 = 0, 中心领导 = 1, 办公室 = 2, 计划财务科 = 3, 房产节能科 = 4, 接待科 = 5, 后勤服务科 = 6, 公务用车管理科 = 7, 公共资产管理科 = 8, }
本文来自博客园,作者:WantRemake,转载请注明原文链接:https://www.cnblogs.com/SmallChen/p/17755586.html