using System.Collections.Generic;
public static void Main()
Options2 enumTest = (Options2)Enum.Parse(typeof(Options2),"3");
var dic = new Dictionary<string,bool>();
var dict = Enum.GetValues(typeof(Options2))
.ToDictionary(t => t.ToString(), t => enumTest.HasFlag(t) );
Console.WriteLine(kvp.Key + ":" + kvp.Value);
Console.WriteLine(enumTest.ToString());