operator == 抽象方法

bool operator ==(
  1. Object other
)
override

判断此列表是否与 other 相等。

默认情况下,列表仅与自己相等。即使 other 也是列表,等价比较也不会比较两个列表的元素。

实现

bool operator ==(Object other);