枚举,以及中文对应解释

  public enum eColor
    {
        discus = 0,
        black=1,
        red=2
    }

    public string[] strsColor ={
        "七彩",
        "黑色",
        "大红色"};

    public string GetColor(eColor em)
    {
        return strsColor[(int)em];
    }

你可能感兴趣的:(枚举)