Choose Category
using System; using System.Text; namespace forgetCode { class program { public static void Main() { // Assign an integer and then cast it to an object implictly. int value1 = 100; object value2 = value1; Console.WriteLine(value2); } } }