ImmutableList<T>.Reverse 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
Reverse() |
反轉整個不可變清單中項目的順序。 |
Reverse(Int32, Int32) |
反轉不可變清單之指定範圍中項目的順序。 |
Reverse()
反轉整個不可變清單中項目的順序。
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)
傳回
反向排列的清單。
適用於
Reverse(Int32, Int32)
反轉不可變清單之指定範圍中項目的順序。
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)
參數
- index
- Int32
要反向範圍內之以零為起始的起始索引。
- count
- Int32
要反向範圍中的項目數。
傳回
反向排列的清單。