public static void Main()
Console.WriteLine("----- Auth3Type ----");
Auth3Type typeAuth3 = Auth3Type.None;
typeAuth3 = Auth3Type.Opt1 | Auth3Type.Opt5;
Console.WriteLine("value : " + typeAuth3.GetHashCode());
Console.WriteLine("string : " + ((Auth3Type)typeAuth3).ToString());
Console.WriteLine("Auth3Type.Opt1 : " + typeAuth3.HasFlag(Auth3Type.Opt1));
Console.WriteLine("Auth3Type.Opt2 : " + typeAuth3.HasFlag(Auth3Type.Opt2));