public static void Main()
Console.WriteLine(i++.ToString() + ": " + ((int)c).ToString() + " : " + c );
Console.WriteLine(i++.ToString() + ": " + ((int)c).ToString() + " : " + c );
c = Color.Blue | Color.White;
Console.WriteLine(i++.ToString() + ": " + ((int)c).ToString() + " : " + c );
if((c & Color.Blue) == Color.Blue)
Console.WriteLine(i++.ToString() + ": " + ((int)c).ToString() + " : " + c );
if((c & Color.Blue) == Color.Black)
Console.WriteLine(i++.ToString() + ": " + ((int)c).ToString() + " : " + c );