Question:Which of the following is a boxing operation in C#?
A int i = 123; object o = i; B int i = (int)o; C float f = 12.5f; D string s = "text";
+ AnswerA
+ Report