Blog

Output of following code:

public enum test {
Sa012,
Sa013,
Sa014
}

class Program {

static void Main(string[] args) {
Dictionary myDic;

myDic = ((test[])Enum.GetValues(typeof(test))).ToDictionary(k => k.ToString(), v => (int)v);

foreach (var item in myDic) {
Console.WriteLine(item);
}

}

}