 | ObservableCollectionTSort Method (Int32, Int32, IComparerT) |
imbVeles Framework: imbSCI | imbACE | imbNLP | imbWEM | imbWBI
Sorts the elements in a range of elements in System.Collections.Generic.List<T> using the specified comparer.
Namespace:
netDxf.Collections
Assembly:
netDXF.Standard (in netDXF.Standard.dll) Version: 2.1.1
Syntaxpublic void Sort(
int index,
int count,
IComparer<T> comparer
)
Request Example
View SourceParameters
- index
- Type: SystemInt32
The zero-based starting index of the range to sort. - count
- Type: SystemInt32
The length of the range to sort. - 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