✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
class Class
{
private int x, y;
public Class (int x, int y) {this.x = x; this.y = y; }
public static bool operator> (Class a, Class b) {return ax> bx; }
}
Серед наведених нижче висловлювань вкажіть справжнє висловлювання:
Визначення класу необхідно доповнити методом з ім'ям
C# oop_class