コード例 #1
0
ファイル: Block.cs プロジェクト: xhydongda/Easydata
 public int CompareTo(Block other)
 {
     if (Sid == other.Sid)
     {
         return(MinTime.CompareTo(other.MinTime));
     }
     return(Sid.CompareTo(other.Sid));
 }
コード例 #2
0
ファイル: IndexEntry.cs プロジェクト: xhydongda/Easydata
 public int CompareTo(IndexEntry other)
 {
     return(MinTime.CompareTo(other.MinTime));
 }