Class C# Tutorial

class MainClass
{
  public static void Main()
  {
    const int Length = 3;
    System.Console.WriteLine(Length);
  }
}
3