Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Sorts a range of elements in the collection of element links.
Namespace: Microsoft.VisualStudio.Modeling
Assembly: Microsoft.VisualStudio.Modeling.Sdk.11.0 (in Microsoft.VisualStudio.Modeling.Sdk.11.0.dll)
Syntax
'Declaration
Public Sub Sort ( _
index As Integer, _
count As Integer, _
comparer As IComparer(Of T) _
)
public void Sort(
int index,
int count,
IComparer<T> comparer
)
public:
void Sort(
int index,
int count,
IComparer<T>^ comparer
)
member Sort :
index:int *
count:int *
comparer:IComparer<'T> -> unit
public function Sort(
index : int,
count : int,
comparer : IComparer<T>
)
Parameters
index
Type: Int32The zero-based starting index of the range to sort.
count
Type: Int32The length of the range to sort.
comparer
Type: IComparer<T>The System.Collections.Generic.IComparer implementation to use when comparing elements; or null to use the default comparer System.Collections.Generic.Comparer.Default.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.