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