✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
int [,] a, b;
a = new int [2, 2] {{22, 33}, {44, 55}};
b = new int [1, 1] {{10}};
b = a;
a [0, 0] = a [1, 1] = 77;
System.Console.Write( "{0} {1}", b [0,0], b [0,1]);
System.Console.Write( "{0} {1}", b [1,0], b [1,1]);
Вкажіть результат виведення на консоль після виконання методу Main():
(**CharpBase**)