Beispiel #1
0
 public bool Equals(IView other)
 {
     return(_pair == null?base.Equals(other) || other == null : _pair.Equals(other.Pair));
 }
Beispiel #2
0
 public bool Equals(IView other)
 {
     return(Pair == null ? other == null : Pair.Equals(other.Pair));
 }