Sobes.tech
Back to tasks
Intern — Senior
114

Боксинг и работа с типами в C#

Get help with live coding in real time with Sobes Copilot
Task condition

Что отобразится в консоль:

static void Example1()
{
    int number = 5;
    object boxed = number;
    number = 12;
    
    Console.WriteLine(boxed);
    Console.WriteLine(number);
}