Q. What will be the output of the following C# code?
Code:
public static void Main(string[] args)
{
int i = 123;
object o = i;
i = 456;
System. Console. WriteLine("The value-type value = {0}", i);
System. Console. WriteLine("The object-type value = {0}", o);
Console. ReadLine();
}
β
Correct Answer: (B)
456, 123