318.
What is the output: public class Example { public static void Main() { byte value1 = 12; int value2 = 12; object object1 = value1; object object2 = value2; Console.WriteLine(object1.Equals(object2)); } }
View Description
No description found.