✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
int [,] A = new int [,] {{55, 77},
{34, 85}};
int [,] B = new int [,] {{11, 22}};
int [] C = new int [3];
C = A;
System.Console.Write(C);
З наведених висловлювань вкажіть висловлювання, яке розкриває причини некоректності фрагмента:
(**CharpBase**)