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