枚举public enum CountState { yes = 1, no }我现在知道一个数字为1怎么让一个string的值为yes
Enum.GetName(typeof(CountState),1);
((CountState)1).ToString()