Data Types C#

using System;
using System.Collections.Generic;
using System.Text;
class Program {
    static void Main(string[] args) {
        char myChar = char.Parse("w");
        Console.WriteLine("-> Value of myChar: {0}\n", myChar);
    }
}