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
SystemObject
  SD.Tools.Algorithmia.SortingSortingExtensionMethods

Namespace:  SD.Tools.Algorithmia.Sorting
Assembly:  SD.Tools.Algorithmia (in SD.Tools.Algorithmia.dll) Version: 1.4.0.0 (1.4.19.0711)
Syntax
public static class SortingExtensionMethods
Methods
  NameDescription
Public methodStatic memberSortT(IListT, SortAlgorithm, SortDirection)
Sorts the specified IList(Of T) using the algorithm specified in the order specified.
Public methodStatic memberSortT(IListT, SortAlgorithm, SortDirection, IComparerT)
Sorts the specified IList(Of T) using the algorithm specified in the order specified.
Public methodStatic memberSortT(IListT, SortAlgorithm, SortDirection, ComparisonT)
Sorts the specified IList(Of T) using the algorithm specified in the order specified.
Public methodStatic memberSortT(IListT, SortAlgorithm, SortDirection, Int32, Int32)
Sorts the specified IList(Of T) using the algorithm specified in the order specified.
Public methodStatic memberSortT(IListT, SortAlgorithm, SortDirection, Int32, Int32, IComparerT)
Sorts the specified IList(Of T) using the algorithm specified in the order specified.
Public methodStatic memberSortT(IListT, SortAlgorithm, SortDirection, Int32, Int32, ComparisonT)
Sorts the specified IList(Of T) using the algorithm specified in the order specified.
Top
See Also