/// <summary> /// Compares 2 instances of IndexingQueue. /// </summary> public static int CompareBySerializedItem(IndexingQueue indexingQueue1, IndexingQueue indexingQueue2) { return(indexingQueue1.SerializedItem.CompareTo(indexingQueue2.SerializedItem)); }
/// <summary> /// Compares 2 instances of IndexingQueue. /// </summary> public static int CompareByItemKey(IndexingQueue indexingQueue1, IndexingQueue indexingQueue2) { return(indexingQueue1.ItemKey.CompareTo(indexingQueue2.ItemKey)); }
/// <summary> /// Compares 2 instances of IndexingQueue. /// </summary> public static int CompareByIndexPath(IndexingQueue indexingQueue1, IndexingQueue indexingQueue2) { return(indexingQueue1.IndexPath.CompareTo(indexingQueue2.IndexPath)); }