创建字典类型

创建字典类型 根据一个值 得到另一个对应的值

位置:Models-Extend-Static_Dic

代码:

public static Dictionary<int, string> RoleType_PostNum
{
  get
    {
      Dictionary<int, string> dic = new Dictionary<int, string> { };
      dic.Add(RoleType.MR.GetHashCode(), "PostNum");
      dic.Add(RoleType.DM.GetHashCode(), "PostNum1");
      dic.Add(RoleType.RM.GetHashCode(), "PostNum2");
      dic.Add(RoleType.AD.GetHashCode(), "PostNum3");
      dic.Add(RoleType.BUD.GetHashCode(), "PostNum4");
      dic.Add(RoleType.CEO.GetHashCode(), "PostNum5");
      return dic;
    }
}

调用:

int roleType=0;

var postNumFiled = Static_Dic.RoleType_PostNum.FirstOrDefault(o => o.Key == roleType).Value;

posted @ 2023-02-22 15:24  小易儿  阅读(8)  评论(0编辑  收藏  举报