public static void Main()
Console.WriteLine("Hello World");
Console.WriteLine("sure");
Console.WriteLine("nope");
public static myBool operator + (myBool a,myBool b)
public static myBool operator * (myBool a,myBool b)
public static implicit operator bool(myBool operand)
public static implicit operator myBool(bool operand)
return new myBool(operand);
return value? "true":"false";