コード例 #1
0
 public int CompareTo(MatchResult other)
 {
     if (Similarity == other.Similarity)
     {
         return(Containment.CompareTo(other.Containment));
     }
     return(Similarity.CompareTo(other.Similarity));
 }
コード例 #2
0
ファイル: Match.cs プロジェクト: brocny/Rocnikovy-Projekt
 public int CompareTo(Match <TTemplate> other)
 {
     return(Similarity.CompareTo(other.Similarity));
 }
コード例 #3
0
 public int CompareTo(Edge obj)
 {
     return(Similarity.CompareTo(obj.Similarity));
 }