ImmutableList<T>.Sort 方法

定义

重载

Sort()

使用默认比较器对整个不可变列表中的元素进行排序。

Sort(IComparer<T>)

使用指定的比较器对整个不可变列表中的元素进行排序。

Sort(Comparison<T>)

使用指定的比较器对整个不可变列表中的元素进行排序。

Sort(Int32, Int32, IComparer<T>)

使用指定的比较器对不可变列表中的一系列元素进行排序。

Sort()

Source:
ImmutableList_1.cs
Source:
ImmutableList_1.cs
Source:
ImmutableList_1.cs

使用默认比较器对整个不可变列表中的元素进行排序。

public:
 System::Collections::Immutable::ImmutableList<T> ^ Sort();
public System.Collections.Immutable.ImmutableList<T> Sort ();
member this.Sort : unit -> System.Collections.Immutable.ImmutableList<'T>
Public Function Sort () As ImmutableList(Of T)

返回

已排序的列表。

适用于

Sort(IComparer<T>)

Source:
ImmutableList_1.cs
Source:
ImmutableList_1.cs
Source:
ImmutableList_1.cs

使用指定的比较器对整个不可变列表中的元素进行排序。

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

参数

comparer
IComparer<T>

比较元素时要使用的实现,若要使用默认比较器 (Default),则为 null

返回

已排序的列表。

适用于

Sort(Comparison<T>)

Source:
ImmutableList_1.cs
Source:
ImmutableList_1.cs
Source:
ImmutableList_1.cs

使用指定的比较器对整个不可变列表中的元素进行排序。

public:
 System::Collections::Immutable::ImmutableList<T> ^ Sort(Comparison<T> ^ comparison);
public System.Collections.Immutable.ImmutableList<T> Sort (Comparison<T> comparison);
member this.Sort : Comparison<'T> -> System.Collections.Immutable.ImmutableList<'T>
Public Function Sort (comparison As Comparison(Of T)) As ImmutableList(Of T)

参数

comparison
Comparison<T>

比较元素时要使用的委托。

返回

已排序的列表。

例外

comparisonnull

适用于

Sort(Int32, Int32, IComparer<T>)

Source:
ImmutableList_1.cs
Source:
ImmutableList_1.cs
Source:
ImmutableList_1.cs

使用指定的比较器对不可变列表中的一系列元素进行排序。

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

参数

index
Int32

要排序范围的从零开始的起始索引。

count
Int32

要排序的范围的长度。

comparer
IComparer<T>

比较元素时要使用的实现,若要使用默认比较器 (Default),则为 null

返回

已排序的列表。

适用于