0
我有這個枚舉轉換枚舉用[DescriptionAttribute]到字典<string,int>
public enum Genders
{
[Description("Nữ")]
Female,
[Description("Nam")]
Male
}
我使用此代碼來獲取每個枚舉名稱和值,並將其保存到一個字典 結果是
女: 0
男性:1
accountViewModel.Genders = Enum.GetValues(typeof(Account.Genders))
.Cast<Account.Genders>()
.ToDictionary(t => t.ToString(), t => (int)t);
如何噸o爲了獲得每個Enum的描述和它的值,
像這樣。
NU:0
南:1