Data Types C#

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