Tuple<T1,T2,T3,T4,T5>.ITuple.Item[Int32] 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정한 Tuple
요소의 값을 가져옵니다.
property System::Object ^ System::Runtime::CompilerServices::ITuple::Item[int] { System::Object ^ get(int index); };
object? System.Runtime.CompilerServices.ITuple.Item[int index] { get; }
object System.Runtime.CompilerServices.ITuple.Item[int index] { get; }
member this.System.Runtime.CompilerServices.ITuple.Item(int) : obj
ReadOnly Property Item(index As Integer) As Object Implements ITuple.Item
매개 변수
- index
- Int32
지정한 Tuple
요소의 인덱스입니다. index
의 범위는 0~4일 수 있습니다.
속성 값
지정한 위치에 있는 Tuple
요소의 값입니다.
구현
예외
index
가 0보다 작거나 4보다 큽니다.
설명
이 Tuple<T1,T2,T3,T4,T5>.ITuple.Item[] 속성은 명시적 인터페이스 구현입니다. 호출하려면 개체를 인터페이스 개체 ITuple 로 Tuple<T1,T2,T3,T4,T5> 캐스팅하거나 변환해야 합니다.