Back to tasksGet help with live coding in real time with Sobes Copilot
Intern — Senior
114
Боксинг и работа с типами в C#
Task condition
Что отобразится в консоль:
static void Example1()
{
int number = 5;
object boxed = number;
number = 12;
Console.WriteLine(boxed);
Console.WriteLine(number);
}