SortingExtensionMethods.Sort<T> Method (IList<T>, SortAlgorithm, SortDirection, IComparer<T>) |
Sorts the specified IList(Of T) using the algorithm specified in the order specified.
Namespace:
SD.Tools.Algorithmia.Sorting
Assembly:
SD.Tools.Algorithmia (in SD.Tools.Algorithmia.dll) Version: 1.4.0.0 (1.4.19.0711)
Syntaxpublic static void Sort<T>(
this IList<T> toSort,
SortAlgorithm algorithm,
SortDirection direction,
IComparer<T> comparer
)
<ExtensionAttribute>
Public Shared Sub Sort(Of T) (
toSort As IList(Of T),
algorithm As SortAlgorithm,
direction As SortDirection,
comparer As IComparer(Of T)
)
Parameters
- toSort
- Type: System.Collections.Generic.IList<T>
the list to sort. - algorithm
- Type: SD.Tools.Algorithmia.SortAlgorithm
The algorithm to use. - direction
- Type: SD.Tools.Algorithmia.SortDirection
The direction to sort the elements in. - comparer
- Type: System.Collections.Generic.IComparer<T>
The comparer to use. If set to null, the default comparer for T is used.
Type Parameters
- T
- type of the elements in toSort
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IList<T>. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also