operator == 抽象方法

bool operator ==(
  1. Object other
)
override

判断此列表是否等于 other

默认情况下,列表只有等于它自己。即使 other 也是列表,相等比较也不会比较两个列表的元素。

实现

bool operator ==(Object other);