コード例 #1
0
 public bool Equals(IView other)
 {
     return(_pair == null?base.Equals(other) || other == null : _pair.Equals(other.Pair));
 }
コード例 #2
0
ファイル: BrowserView.cs プロジェクト: wyh0395/iFactr-NETCF
 public bool Equals(IView other)
 {
     return(Pair == null ? other == null : Pair.Equals(other.Pair));
 }