大家好,我 有和枚舉這樣定義。
public enum SomeType {
[Description("One Value")]
One,
[Description("Two Value")]
Two,
[Description("Three Value")]
Three
}
但是當我嘗試解析字符串這樣
SomeType test = (SomeType)Enum.Parse(typeof(SomeType), "Three Value");
我得到EXCETION「請求值‘三大價值’未找到」。這不應該工作嗎?
謝謝
你實際使用'SomeType'? – 2011-04-26 17:27:25
[查看此條目。當然,你需要什麼(http://stackoverflow.com/questions/424366/c-string-enums) – 2011-04-26 17:30:56