ImmutableArray<T>.Sort 메서드
정의
오버로드
Sort() |
기본 비교자를 사용하여 변경할 수 없는 배열의 요소를 정렬합니다.Sorts the elements in the immutable array using the default comparer. |
Sort(IComparer<T>) |
지정된 비교자를 사용하여 변경할 수 없는 배열의 요소를 정렬합니다.Sorts the elements in the immutable array using the specified comparer. |
Sort(Comparison<T>) |
지정된 Comparison<T>을 사용하여 전체 ImmutableArray<T>의 요소를 정렬합니다.Sorts the elements in the entire ImmutableArray<T> using the specified Comparison<T>. |
Sort(Int32, Int32, IComparer<T>) |
지정된 비교자를 사용하여 변경할 수 없는 배열의 지정된 요소를 정렬합니다.Sorts the specified elements in the immutable array using the specified comparer. |
Sort()
기본 비교자를 사용하여 변경할 수 없는 배열의 요소를 정렬합니다.Sorts the elements in the immutable array using the default comparer.
public:
System::Collections::Immutable::ImmutableArray<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)
반환
이 배열의 항목을 정렬된 순서대로 포함하는 변경할 수 없는 새 배열입니다.A new immutable array that contains the items in this array, in sorted order.
적용 대상
Sort(IComparer<T>)
지정된 비교자를 사용하여 변경할 수 없는 배열의 요소를 정렬합니다.Sorts the elements in the immutable array using the specified 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);
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
입니다.The implementation to use when comparing elements, or null
to use the default comparer
반환
이 배열의 항목을 정렬된 순서대로 포함하는 변경할 수 없는 새 배열입니다.A new immutable array that contains the items in this array, in sorted order.
적용 대상
Sort(Comparison<T>)
지정된 Comparison<T>을 사용하여 전체 ImmutableArray<T>의 요소를 정렬합니다.Sorts the elements in the entire ImmutableArray<T> using the specified Comparison<T>.
public:
System::Collections::Immutable::ImmutableArray<T> Sort(Comparison<T> ^ comparison);
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>입니다.The Comparison<T> to use when comparing elements.
반환
정렬된 목록입니다.The sorted list.
예외
comparison
가 null입니다.comparison
is null.
적용 대상
Sort(Int32, Int32, IComparer<T>)
지정된 비교자를 사용하여 변경할 수 없는 배열의 지정된 요소를 정렬합니다.Sorts the specified elements in the immutable array using the specified 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);
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
정렬할 첫 번째 요소의 인덱스입니다.The index of the first element to sort.
- count
- Int32
정렬에 포함할 요소 수입니다.The number of elements to include in the sort.
- comparer
- IComparer<T>
요소를 비교할 때 사용할 구현이거나, 기본 비교자를 사용하려면 null
입니다.The implementation to use when comparing elements, or null
to use the default comparer
반환
이 배열의 항목을 정렬된 순서대로 포함하는 변경할 수 없는 새 배열입니다.A new immutable array that contains the items in this array, in sorted order.