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
反転させる範囲の開始位置を示す 0 から始まるインデックス。
- count
- Int32
反転させる範囲内にある要素の数。
戻り値
逆順のリスト。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET