✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Що буде виведено у результаті виконання програми?
class Program
{ static void Main(string[] args)
{ var a = new A { B = 3 };
Console.Write(a is System.Object);
var o = a as System.Object;
Console.Write(o.B); } }
public class A
{ public int B; }