Data Type C# Tutorial

using System;
class MainClass
{
  static void Main(string[] args)
  {
    char[] MyChar = { 'H', 'e', 'l', 'l', 'o', '\0' };
        Console.WriteLine(MyChar);
  }
}
Hello