Click or drag to resize
SortingExtensionMethods Class
Static class which contains the extension method for IList(Of T) implementations to sort these implementations using various sorting algorithms.
Inheritance Hierarchy
System.Object
  SD.Tools.Algorithmia.Sorting.SortingExtensionMethods

Namespace: SD.Tools.Algorithmia.Sorting
Assembly: SD.Tools.Algorithmia (in SD.Tools.Algorithmia.dll) Version: 1.2.0.0 (1.2.14.1118)
Syntax
public static class SortingExtensionMethods
Methods
  NameDescription
Public methodStatic memberSort<T>(IList<T>, SortAlgorithm, SortDirection)
Sorts the specified IList(Of T) using the algorithm specified in the order specified.
Public methodStatic memberSort<T>(IList<T>, SortAlgorithm, SortDirection, IComparer<T>)
Sorts the specified IList(Of T) using the algorithm specified in the order specified.
Public methodStatic memberSort<T>(IList<T>, SortAlgorithm, SortDirection, Comparison<T>)
Sorts the specified IList(Of T) using the algorithm specified in the order specified.
Public methodStatic memberSort<T>(IList<T>, SortAlgorithm, SortDirection, Int32, Int32)
Sorts the specified IList(Of T) using the algorithm specified in the order specified.
Public methodStatic memberSort<T>(IList<T>, SortAlgorithm, SortDirection, Int32, Int32, IComparer<T>)
Sorts the specified IList(Of T) using the algorithm specified in the order specified.
Public methodStatic memberSort<T>(IList<T>, SortAlgorithm, SortDirection, Int32, Int32, Comparison<T>)
Sorts the specified IList(Of T) using the algorithm specified in the order specified.
Top
See Also