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