コード例 #1
0
    public static void Main()
    {
        BooleanPrinter boolExtension =
          new BooleanPrinter();

        boolExtension.PrintBool(true);
    }
コード例 #2
0
ファイル: Program.cs プロジェクト: wIksS/TelerikAcademy
    static void Main()
    {
        BooleanPrinter booleanPrinter = new BooleanPrinter();

        booleanPrinter.Print(true);
    }
コード例 #3
0
ファイル: Program.cs プロジェクト: klimentt/Telerik-Academy
 public static void Main()
 {
     BooleanPrinter booleanPrinter = new BooleanPrinter();
     booleanPrinter.PrintBooleanValue(true);
 }
コード例 #4
0
    public static void Main()
    {
        BooleanPrinter booleanPrinter = new BooleanPrinter();

        booleanPrinter.PrintBooleanValue(true);
    }
コード例 #5
0
ファイル: Startup.cs プロジェクト: prot3ct/TelerikSeson2016
        public static void Main(string[] args)
        {
            var printer = new BooleanPrinter();

            printer.PrintBooleanAsAString(true);
        }