0
我有一個枚舉與說明屬性,像這樣:獲取枚舉的價值與它的描述屬性
public enum MyEnum
{
Name1 = 1,
[Description("Here is another")]
HereIsAnother = 2,
[Description("Last one")]
LastOne = 3
}
我有「最後一個」,也就是3
的價值是什麼返回代碼那?