コード例 #1
0
ファイル: SearchIndexItem.cs プロジェクト: dotnet/docfx
 public bool Equals(SearchIndexItem other)
 {
     if (other == null)
     {
         return false;
     }
     if (ReferenceEquals(this, other))
     {
         return true;
     }
     return string.Equals(this.Title, other.Title) && string.Equals(this.Href, other.Href) && string.Equals(this.Keywords, other.Keywords);
 }
コード例 #2
0
ファイル: SearchIndexItem.cs プロジェクト: diev/dotnet-docfx
 public bool Equals(SearchIndexItem other)
 {
     if (other == null)
     {
         return(false);
     }
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return(string.Equals(this.Title, other.Title) && string.Equals(this.Href, other.Href) && string.Equals(this.Keywords, other.Keywords));
 }