ValueTuple<T1,T2,T3,T4,T5,T6,T7>.IStructuralComparable.CompareTo 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정된 비교자를 사용하여 현재 ValueTuple<T1,T2,T3,T4,T5,T6,T7> 인스턴스를 지정한 개체와 비교하고 현재 개체가 정렬 순서에서 지정된 개체보다 앞에 있는지, 뒤에 있는지 아니면 같은 위치에 있는지를 나타내는 정수를 반환합니다.
virtual int System.Collections.IStructuralComparable.CompareTo(System::Object ^ other, System::Collections::IComparer ^ comparer) = System::Collections::IStructuralComparable::CompareTo;
int IStructuralComparable.CompareTo (object other, System.Collections.IComparer comparer);
abstract member System.Collections.IStructuralComparable.CompareTo : obj * System.Collections.IComparer -> int
override this.System.Collections.IStructuralComparable.CompareTo : obj * System.Collections.IComparer -> int
Function CompareTo (other As Object, comparer As IComparer) As Integer Implements IStructuralComparable.CompareTo
매개 변수
- other
- Object
현재 인스턴스와 비교할 개체입니다.
- comparer
- IComparer
비교를 위한 사용자 지정 규칙을 제공하는 개체입니다.
반환
다음 표와 같이 정렬 순서에서 이 인스턴스와 other
의 상대적 위치를 나타내는 부호 있는 정수입니다.
값 | 설명 |
---|---|
음의 정수 | 이 인스턴스가 other 앞에 오는 경우
|
0 | 이 인스턴스와 other 의 위치가 정렬 순서에서 같은 경우
|
양의 정수 | 이 인스턴스가 other 다음에 오는 경우
|
구현
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET