bool.Parse

image_pdfimage_print
   
  

using System;
using System.Collections.Generic;
using System.Text;

class Program {
    static void Main(string[] args) {
        bool myBool = bool.Parse("True");
        Console.WriteLine("-> Value of myBool: {0}", myBool);
    }
}

   
     


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