Data Type C# Tutorial

class MainClass
{
  static void Main()
  {
    bool boolean = true;
    string text = boolean.ToString();
    // Display "True"
    System.Console.WriteLine(text);
  }
}