Mega Code Archive
Categories
/
C# Tutorial
/
Data Type
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; } }