コード例 #1
0
 /// <summary>
 /// Compares 2 instances of IndexingQueue.
 /// </summary>
 public static int CompareBySerializedItem(IndexingQueue indexingQueue1, IndexingQueue indexingQueue2)
 {
     return(indexingQueue1.SerializedItem.CompareTo(indexingQueue2.SerializedItem));
 }
コード例 #2
0
 /// <summary>
 /// Compares 2 instances of IndexingQueue.
 /// </summary>
 public static int CompareByItemKey(IndexingQueue indexingQueue1, IndexingQueue indexingQueue2)
 {
     return(indexingQueue1.ItemKey.CompareTo(indexingQueue2.ItemKey));
 }
コード例 #3
0
 /// <summary>
 /// Compares 2 instances of IndexingQueue.
 /// </summary>
 public static int CompareByIndexPath(IndexingQueue indexingQueue1, IndexingQueue indexingQueue2)
 {
     return(indexingQueue1.IndexPath.CompareTo(indexingQueue2.IndexPath));
 }