Mega Code Archive

 
Categories / C# / Data Types
 

Bool Parse

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);     } }