Get a string that contains the integer representation of an enum value
1 2 3 4 5 6 7 | string userTypeId = ((int)ERPSystemUserType.Basic).ToString(); public enum ERPSystemUserType { Basic = 20, Upgraded = 30 } |
如果使用
是否有任何属性或方法,我可以用它作为返回字符串的枚举数?而不是做
使用
1 2 3 4 5 6 7 | string userTypeId = ((int)ERPSystemUserType.Basic).ToString(); public enum ERPSystemUserType { Basic = 20, Upgraded = 30 } |
如果使用
是否有任何属性或方法,我可以用它作为返回字符串的枚举数?而不是做
使用