bool variable

image_pdfimage_print
   
  

using System;

class Operators {
    static void Main() {
        bool a = 4 > 5;
        Console.WriteLine("{0}", a);
    }
}

   
     


This entry was posted in Data Types. Bookmark the permalink.