ImmutableArray<T>.Sort 方法

定义

重载

Sort()

使用默认比较器对不可变数组中的元素进行排序。

Sort(IComparer<T>)

使用指定的比较器对不可变数组中的元素进行排序。

Sort(Comparison<T>)

使用指定的 Comparison<T>,对整个 ImmutableArray<T> 中的元素进行排序。

Sort(Int32, Int32, IComparer<T>)

使用指定的比较器对不可变数组中的指定元素进行排序。

Sort()

Source:
ImmutableArray_1.cs
Source:
ImmutableArray_1.cs
Source:
ImmutableArray_1.cs

使用默认比较器对不可变数组中的元素进行排序。

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

返回

一个新的不可变数组,其中包含已排序的项。

适用于

Sort(IComparer<T>)

Source:
ImmutableArray_1.cs
Source:
ImmutableArray_1.cs
Source:
ImmutableArray_1.cs

使用指定的比较器对不可变数组中的元素进行排序。

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

参数

comparer
IComparer<T>

比较元素时要使用的实现,或使用 null 默认比较器。

返回

一个新的不可变数组,其中包含已排序的项。

适用于

Sort(Comparison<T>)

Source:
ImmutableArray_1.cs
Source:
ImmutableArray_1.cs
Source:
ImmutableArray_1.cs

使用指定的 Comparison<T>,对整个 ImmutableArray<T> 中的元素进行排序。

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

参数

comparison
Comparison<T>

比较元素时要使用的 Comparison<T>

返回

已排序的列表。

例外

comparison 为 null。

适用于

Sort(Int32, Int32, IComparer<T>)

Source:
ImmutableArray_1.cs
Source:
ImmutableArray_1.cs
Source:
ImmutableArray_1.cs

使用指定的比较器对不可变数组中的指定元素进行排序。

public:
 System::Collections::Immutable::ImmutableArray<T> Sort(int index, int count, System::Collections::Generic::IComparer<T> ^ comparer);
public System.Collections.Immutable.ImmutableArray<T> Sort (int index, int count, System.Collections.Generic.IComparer<T> comparer);
public System.Collections.Immutable.ImmutableArray<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.ImmutableArray<'T>
Public Function Sort (index As Integer, count As Integer, comparer As IComparer(Of T)) As ImmutableArray(Of T)

参数

index
Int32

要排序的第一个元素的索引。

count
Int32

要包括在排序中的元素数。

comparer
IComparer<T>

比较元素时要使用的实现,或使用 null 默认比较器。

返回

一个新的不可变数组,其中包含已排序的项。

适用于