Csharp/CSharp Tutorial/Data Type/long cast
Cast int to long implicit and cast in to short explicit
using System;
class MainClass
{
static void Main(string[] args)
{
int MyInt = 12345;
long MyLong = MyInt;
short MyShort = (short)MyInt;
}
}