Exemple #1
0
        static void Main(string[] args)
        {
            BoolPrinter printer = new BoolPrinter();

            printer.PrintBool(true);
        }
Exemple #2
0
 public static void Main()
 {
     var boolPrinter = new BoolPrinter();
     boolPrinter.PrintBool(true);
 }
Exemple #3
0
 static void Main(string[] args)
 {
     BoolPrinter printer = new BoolPrinter();
     printer.PrintBool(true);
 }