ValueTuple<T1,T2,T3,T4>.ITuple.Item[Int32] 속성
정의
지정한 ValueTuple
요소의 값을 가져옵니다.Gets the value of the specified ValueTuple
element.
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
지정한 ValueTuple
요소의 인덱스입니다.The index of the specified ValueTuple
element. index
의 범위는 0~3일 수 있습니다.index
can range from 0 to 3.
속성 값
지정한 위치에 있는 ValueTuple
요소의 값입니다.The value of the ValueTuple
element at the specified position.
구현
예외
index
가 0보다 작거나 3보다 큽니다.index
is less than 0 or greater than 3.
설명
ValueTuple<T1,T2,T3,T4>.ITuple.Item[]속성은 명시적 인터페이스 구현입니다.The ValueTuple<T1,T2,T3,T4>.ITuple.Item[] property is an explicit interface implementation. 이를 호출 하려면 개체를 인터페이스 개체로 캐스팅 하거나 변환 해야 합니다 ValueTuple<T1,T2,T3,T4> ITuple .To call it, you must cast or convert the ValueTuple<T1,T2,T3,T4> object to an ITuple interface object.