Click or drag to resize

ObservableCollectionTSort Method (Int32, Int32, 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(
	int index,
	int count,
	IComparer<T> comparer
)

Parameters

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