using System; public class Test { public static void Main() { object o = (short)42; int i = (int)o; Console.WriteLine("{0}", i); } }