Data Type C# Tutorial

using System;
class MainClass
{
  static void Main(string[] args)
  {
    int MyInt = 12345;
    long MyLong = MyInt;  
    short MyShort = (short)MyInt;
  }
}