ImmutableArray<T>.Sort 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
Sort() |
使用預設的比較子,來排序不可變陣列中的項目。 |
Sort(IComparer<T>) |
使用指定的比較子,來排序不可變陣列中的項目。 |
Sort(Comparison<T>) |
使用指定的 Comparison<T> 來排序在整個 ImmutableArray<T> 中的項目。 |
Sort(Int32, Int32, IComparer<T>) |
使用指定的比較子,來排序不可變陣列中指定的項目。 |
Sort()
使用預設的比較子,來排序不可變陣列中的項目。
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>)
使用指定的比較子,來排序不可變陣列中的項目。
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>)
使用指定的 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>)
使用指定的比較子,來排序不可變陣列中指定的項目。
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
預設比較子。
傳回
新的不可變陣列,在這個陣列中會以排序的順序來包含項目。