ImmutableArray<T>.Sort Método

Definição

Sobrecargas

Sort()

Classifica os elementos na matriz imutável usando o comparador padrão.

Sort(IComparer<T>)

Classifica os elementos na matriz imutável usando o comparador especificado.

Sort(Comparison<T>)

Classifica os elementos em todo o ImmutableArray<T> usando o Comparison<T> especificado.

Sort(Int32, Int32, IComparer<T>)

Classifica os elementos especificados na matriz imutável usando o comparador especificado.

Sort()

Origem:
ImmutableArray_1.cs
Origem:
ImmutableArray_1.cs
Origem:
ImmutableArray_1.cs

Classifica os elementos na matriz imutável usando o comparador padrão.

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

Retornos

Uma nova matriz imutável que contém os itens nessa matriz, em ordem de classificação.

Aplica-se a

Sort(IComparer<T>)

Origem:
ImmutableArray_1.cs
Origem:
ImmutableArray_1.cs
Origem:
ImmutableArray_1.cs

Classifica os elementos na matriz imutável usando o comparador especificado.

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

Parâmetros

comparer
IComparer<T>

A implementação a ser usada ao comparar elementos ou null usar o comparador padrão.

Retornos

Uma nova matriz imutável que contém os itens nessa matriz, em ordem de classificação.

Aplica-se a

Sort(Comparison<T>)

Origem:
ImmutableArray_1.cs
Origem:
ImmutableArray_1.cs
Origem:
ImmutableArray_1.cs

Classifica os elementos em todo o ImmutableArray<T> usando o Comparison<T> especificado.

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

Parâmetros

comparison
Comparison<T>

O Comparison<T> a ser usado na comparação de elementos.

Retornos

A lista classificada.

Exceções

comparison é nulo.

Aplica-se a

Sort(Int32, Int32, IComparer<T>)

Origem:
ImmutableArray_1.cs
Origem:
ImmutableArray_1.cs
Origem:
ImmutableArray_1.cs

Classifica os elementos especificados na matriz imutável usando o comparador especificado.

public:
 System::Collections::Immutable::ImmutableArray<T> Sort(int index, int count, System::Collections::Generic::IComparer<T> ^ comparer);
public System.Collections.Immutable.ImmutableArray<T> Sort (int index, int count, System.Collections.Generic.IComparer<T> comparer);
public System.Collections.Immutable.ImmutableArray<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.ImmutableArray<'T>
Public Function Sort (index As Integer, count As Integer, comparer As IComparer(Of T)) As ImmutableArray(Of T)

Parâmetros

index
Int32

O índice do primeiro elemento a ser classificado.

count
Int32

O número de elementos a serem incluídos na classificação.

comparer
IComparer<T>

A implementação a ser usada ao comparar elementos ou null usar o comparador padrão.

Retornos

Uma nova matriz imutável que contém os itens nessa matriz, em ordem de classificação.

Aplica-se a