Data Type C# Tutorial

class MainClass
{
  public static void Main()
  {
    int myValue = 2;
    System.Console.WriteLine(myValue);  
  }
}
2