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