public static void Main()
Console.WriteLine("Regular AND:");
if (Method1() & Method2())
Console.WriteLine("Both methods returned true.");
Console.WriteLine("At least one of the methods returned false.");
Console.WriteLine("\nShort-circuit AND:");
if (Method1() && Method2())
Console.WriteLine("Both methods returned true.");
Console.WriteLine("At least one of the methods returned false.");
Console.WriteLine("Method1 called.");
Console.WriteLine("Method2 called.");