ImmutableList<T>.Reverse Método
Definição
Importante
Algumas informações dizem respeito a um produto pré-lançado que pode ser substancialmente modificado antes de ser lançado. A Microsoft não faz garantias, de forma expressa ou implícita, em relação à informação aqui apresentada.
Sobrecargas
| Name | Description |
|---|---|
| Reverse(Int32, Int32) |
Inverte a ordem dos elementos no intervalo especificado da lista imutável. |
| Reverse() |
Inverte a ordem dos elementos em toda a lista imutável. |
Reverse(Int32, Int32)
Inverte a ordem dos elementos no intervalo especificado da lista imutável.
public:
System::Collections::Immutable::ImmutableList<T> ^ Reverse(int index, int count);
public System.Collections.Immutable.ImmutableList<T> Reverse(int index, int count);
member this.Reverse : int * int -> System.Collections.Immutable.ImmutableList<'T>
Public Function Reverse (index As Integer, count As Integer) As ImmutableList(Of T)
Parâmetros
- index
- Int32
O índice inicial baseado em zero do intervalo a inverter.
- count
- Int32
O número de elementos no intervalo a inverter.
Devoluções
A lista invertida.
Aplica-se a
Reverse()
Inverte a ordem dos elementos em toda a lista imutável.
public:
System::Collections::Immutable::ImmutableList<T> ^ Reverse();
public System.Collections.Immutable.ImmutableList<T> Reverse();
member this.Reverse : unit -> System.Collections.Immutable.ImmutableList<'T>
Public Function Reverse () As ImmutableList(Of T)
Devoluções
A lista invertida.