ImmutableList<T>.Sort Método

Definição

Sobrecargas

Sort()

Classifica os elementos em toda a lista imutável usando o comparador padrão.

Sort(IComparer<T>)

Classifica os elementos em toda a lista imutável usando o comparador especificado.

Sort(Comparison<T>)

Classifica os elementos em toda a lista imutável usando o comparador especificado.

Sort(Int32, Int32, IComparer<T>)

Classifica um intervalo de elementos na lista imutável usando o comparador especificado.

Sort()

Origem:
ImmutableList_1.cs
Origem:
ImmutableList_1.cs
Origem:
ImmutableList_1.cs

Classifica os elementos em toda a lista imutável usando o comparador padrão.

public:
 System::Collections::Immutable::ImmutableList<T> ^ Sort();
public System.Collections.Immutable.ImmutableList<T> Sort ();
member this.Sort : unit -> System.Collections.Immutable.ImmutableList<'T>
Public Function Sort () As ImmutableList(Of T)

Retornos

A lista classificada.

Aplica-se a

Sort(IComparer<T>)

Origem:
ImmutableList_1.cs
Origem:
ImmutableList_1.cs
Origem:
ImmutableList_1.cs

Classifica os elementos em toda a lista imutável usando o comparador especificado.

public:
 System::Collections::Immutable::ImmutableList<T> ^ Sort(System::Collections::Generic::IComparer<T> ^ comparer);
public System.Collections.Immutable.ImmutableList<T> Sort (System.Collections.Generic.IComparer<T> comparer);
public System.Collections.Immutable.ImmutableList<T> Sort (System.Collections.Generic.IComparer<T>? comparer);
member this.Sort : System.Collections.Generic.IComparer<'T> -> System.Collections.Immutable.ImmutableList<'T>
Public Function Sort (comparer As IComparer(Of T)) As ImmutableList(Of T)

Parâmetros

comparer
IComparer<T>

A implementação a ser usada na comparação de elementos ou null para usar o comparador padrão (Default).

Retornos

A lista classificada.

Aplica-se a

Sort(Comparison<T>)

Origem:
ImmutableList_1.cs
Origem:
ImmutableList_1.cs
Origem:
ImmutableList_1.cs

Classifica os elementos em toda a lista imutável usando o comparador especificado.

public:
 System::Collections::Immutable::ImmutableList<T> ^ Sort(Comparison<T> ^ comparison);
public System.Collections.Immutable.ImmutableList<T> Sort (Comparison<T> comparison);
member this.Sort : Comparison<'T> -> System.Collections.Immutable.ImmutableList<'T>
Public Function Sort (comparison As Comparison(Of T)) As ImmutableList(Of T)

Parâmetros

comparison
Comparison<T>

O delegado a ser usado na comparação de elementos.

Retornos

A lista classificada.

Exceções

comparison é null.

Aplica-se a

Sort(Int32, Int32, IComparer<T>)

Origem:
ImmutableList_1.cs
Origem:
ImmutableList_1.cs
Origem:
ImmutableList_1.cs

Classifica um intervalo de elementos na lista imutável usando o comparador especificado.

public:
 System::Collections::Immutable::ImmutableList<T> ^ Sort(int index, int count, System::Collections::Generic::IComparer<T> ^ comparer);
public System.Collections.Immutable.ImmutableList<T> Sort (int index, int count, System.Collections.Generic.IComparer<T> comparer);
public System.Collections.Immutable.ImmutableList<T> Sort (int index, int count, System.Collections.Generic.IComparer<T>? comparer);
member this.Sort : int * int * System.Collections.Generic.IComparer<'T> -> System.Collections.Immutable.ImmutableList<'T>
Public Function Sort (index As Integer, count As Integer, comparer As IComparer(Of T)) As ImmutableList(Of T)

Parâmetros

index
Int32

O índice inicial baseado em zero do intervalo a ser classificado.

count
Int32

O tamanho do intervalo a ser classificado.

comparer
IComparer<T>

A implementação a ser usada na comparação de elementos ou null para usar o comparador padrão (Default).

Retornos

A lista classificada.

Aplica-se a