ImmutableArray<T>.Builder.Sort 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
Sort() |
배열의 내용을 정렬합니다. |
Sort(IComparer<T>) |
배열의 내용을 정렬합니다. |
Sort(Comparison<T>) |
지정된 Comparison<T>을 사용하여 전체 배열의 요소를 정렬합니다. |
Sort(Int32, Int32, IComparer<T>) |
배열의 내용을 정렬합니다. |
Sort()
- Source:
- ImmutableArray_1.Builder.cs
- Source:
- ImmutableArray_1.Builder.cs
- Source:
- ImmutableArray_1.Builder.cs
배열의 내용을 정렬합니다.
public:
void Sort();
public void Sort ();
member this.Sort : unit -> unit
Public Sub Sort ()
적용 대상
Sort(IComparer<T>)
- Source:
- ImmutableArray_1.Builder.cs
- Source:
- ImmutableArray_1.Builder.cs
- Source:
- ImmutableArray_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>
정렬에 사용할 비교자입니다. 비교자가 null
인 경우 배열에 있는 요소 형식의 기본 비교자가 사용됩니다.
적용 대상
Sort(Comparison<T>)
- Source:
- ImmutableArray_1.Builder.cs
- Source:
- ImmutableArray_1.Builder.cs
- Source:
- ImmutableArray_1.Builder.cs
지정된 Comparison<T>을 사용하여 전체 배열의 요소를 정렬합니다.
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>
요소를 비교할 때 사용할 Comparison<T>입니다.
예외
comparison
가 null입니다.
적용 대상
Sort(Int32, Int32, IComparer<T>)
- Source:
- ImmutableArray_1.Builder.cs
- Source:
- ImmutableArray_1.Builder.cs
- Source:
- ImmutableArray_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
정렬의 시작 인덱스입니다.
- count
- Int32
정렬에 포함할 요소 수입니다.
- comparer
- IComparer<T>
정렬에 사용할 비교자입니다. 비교자가 null
인 경우 배열에 있는 요소 형식의 기본 비교자가 사용됩니다.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET