ObservableCollectionTSort Method (IComparerT)
|
Sorts the elements in a range of elements in System.Collections.Generic.List<T> using the specified comparer.
Namespace:
DXFReaderNET.Collections
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public void Sort(
IComparer<T> comparer
)
Public Sub Sort (
comparer As IComparer(Of T)
)
public:
void Sort(
IComparer<T>^ comparer
)
member Sort :
comparer : IComparer<'T> -> unit
METHOD Sort(
comparer AS IComparer<T>
) AS VOID
Parameters
- comparer
- Type: System.Collections.GenericIComparerT
The System.Collections.Generic.IComparer<T> implementation to use when comparing elements, or null to use the default comparer System.Collections.Generic.Comparer<T>.Default.
See Also