ImmutableList<T>.Reverse Metoda

Definicja

Przeciążenia

Reverse()

Odwraca kolejność elementów na całej liście niezmiennej.

Reverse(Int32, Int32)

Odwraca kolejność elementów w określonym zakresie niezmiennej listy.

Reverse()

Źródło:
ImmutableList_1.cs
Źródło:
ImmutableList_1.cs
Źródło:
ImmutableList_1.cs

Odwraca kolejność elementów na całej liście niezmiennej.

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)

Zwraca

Odwrócona lista.

Dotyczy

Reverse(Int32, Int32)

Źródło:
ImmutableList_1.cs
Źródło:
ImmutableList_1.cs
Źródło:
ImmutableList_1.cs

Odwraca kolejność elementów w określonym zakresie niezmiennej listy.

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)

Parametry

index
Int32

Zerowy indeks początkowy zakresu do odwrócenia.

count
Int32

Liczba elementów w zakresie do odwrócenia.

Zwraca

Odwrócona lista.

Dotyczy