Sort(Int32,Int32,IStructComparer<T>) Method
In This Topic
Sorts the elements in a range of elements in
StructList<T> using the specified comparer.
Syntax
'Declaration
Public Overloads Sub Sort( _
ByVal As System.Integer, _
ByVal As System.Integer, _
ByVal As IStructComparer(Of T) _
)
public void Sort(
System.int ,
System.int ,
IStructComparer<T>
)
Parameters
- index
- The zero-based starting index of the range to sort.
- count
- The length of the range to sort.
- comparer
- The IStructComparer<T> implementation to use when comparing elements.
See Also