Click or drag to resize
AlgorithmsMergeSorted Method
Overload List
  NameDescription
Public methodStatic memberMergeSortedT(IEnumerableT)
Merge several sorted collections into a single sorted collection. Each input collection must be sorted by the natural ordering of the type (it's implementation of IComparable<T>). The merging is stable; equal items maintain their ordering, and equal items in different collections are placed in the order of the collections.
Public methodStatic memberMergeSortedT(IComparerT, IEnumerableT)
Merge several sorted collections into a single sorted collection. Each input collection must be sorted by the ordering in the passed instance of IComparer<T>. The merging is stable; equal items maintain their ordering, and equal items in different collections are placed in the order of the collections.
Public methodStatic memberMergeSortedT(ComparisonT, IEnumerableT)
Merge several sorted collections into a single sorted collection. Each input collection must be sorted by the ordering in the passed Comparison<T> delegate. The merging is stable; equal items maintain their ordering, and equal items in different collections are placed in the order of the collections.
Top
See Also