ImmutableList<T>.Builder.Sort メソッド

定義

オーバーロード

Sort()

既定の比較子を使用して、変更できないリスト全体の要素を並べ替えます。

Sort(IComparer<T>)

指定された比較子を使用して、変更できないリスト全体の要素を並べ替えます。

Sort(Comparison<T>)

指定された比較オブジェクトを使用して、変更できないリスト全体の要素を並べ替えます。

Sort(Int32, Int32, IComparer<T>)

指定した比較子を使用して、変更できないリスト内の要素の範囲内の要素を並べ替えます。

Sort()

ソース:
ImmutableList_1.Builder.cs
ソース:
ImmutableList_1.Builder.cs
ソース:
ImmutableList_1.Builder.cs

既定の比較子を使用して、変更できないリスト全体の要素を並べ替えます。

public:
 void Sort();
public void Sort ();
member this.Sort : unit -> unit
Public Sub Sort ()

適用対象

Sort(IComparer<T>)

ソース:
ImmutableList_1.Builder.cs
ソース:
ImmutableList_1.Builder.cs
ソース:
ImmutableList_1.Builder.cs

指定された比較子を使用して、変更できないリスト全体の要素を並べ替えます。

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

パラメーター

comparer
IComparer<T>

要素を比較する場合に使用する実装。または、既定の比較子 (Default) を使用する場合は null

適用対象

Sort(Comparison<T>)

ソース:
ImmutableList_1.Builder.cs
ソース:
ImmutableList_1.Builder.cs
ソース:
ImmutableList_1.Builder.cs

指定された比較オブジェクトを使用して、変更できないリスト全体の要素を並べ替えます。

public:
 void Sort(Comparison<T> ^ comparison);
public void Sort (Comparison<T> comparison);
member this.Sort : Comparison<'T> -> unit
Public Sub Sort (comparison As Comparison(Of T))

パラメーター

comparison
Comparison<T>

要素を比較する場合に使用するオブジェクト。

例外

comparisonnull です。

適用対象

Sort(Int32, Int32, IComparer<T>)

ソース:
ImmutableList_1.Builder.cs
ソース:
ImmutableList_1.Builder.cs
ソース:
ImmutableList_1.Builder.cs

指定した比較子を使用して、変更できないリスト内の要素の範囲内の要素を並べ替えます。

public:
 void Sort(int index, int count, System::Collections::Generic::IComparer<T> ^ comparer);
public void Sort (int index, int count, System.Collections.Generic.IComparer<T> comparer);
public void Sort (int index, int count, System.Collections.Generic.IComparer<T>? comparer);
member this.Sort : int * int * System.Collections.Generic.IComparer<'T> -> unit
Public Sub Sort (index As Integer, count As Integer, comparer As IComparer(Of T))

パラメーター

index
Int32

並べ替える範囲の開始位置を示す 0 から始まるインデックス。

count
Int32

並べ替える範囲の長さ。

comparer
IComparer<T>

要素を比較する場合に使用する実装。または、既定の比較子 (Default) を使用する場合は null

適用対象