Tuple<T1,T2,T3,T4,T5>.Item5 속성

정의

현재 Tuple<T1,T2,T3,T4,T5> 개체의 다섯 번째 구성 요소 값을 가져옵니다.

public:
 property T5 Item5 { T5 get(); };
public T5 Item5 { get; }
member this.Item5 : 'T5
Public ReadOnly Property Item5 As T5

속성 값

T5

현재 Tuple<T1,T2,T3,T4,T5> 개체의 다섯 번째 구성 요소 값입니다.

예제

다음 예제에서는 구성 요소에 유나이티드 날짜의 상태 이름, 1990년과 2000년의 모집단, 이 10년 기간의 인구 변화 및 모집단의 백분율 변경이 포함된 개체 배열 Tuple<T1,T2,T3,T4,T5> 을 정의합니다. 그런 다음 배열을 반복하고 튜플에 각 구성 요소의 값을 표시합니다.

using System;

public class Example
{
   public static void Main()
   {
      // Define array of tuples reflecting population change by state, 1990-2000.
      Tuple<string, int, int, int, double>[] statesData = 
         { Tuple.Create("California", 29760021, 33871648, 4111627, 13.8), 
           Tuple.Create("Illinois", 11430602, 12419293, 988691, 8.6), 
           Tuple.Create("Washington", 4866692, 5894121, 1027429, 21.1) };

      // Display the items of each tuple
      Console.WriteLine("{0,-12}{1,18}{2,18}{3,15}{4,12}\n", "State", 
                        "Population 1990", "Population 2000", "Change", 
                        "% Change");
      foreach(Tuple<string, int, int, int, double> stateData in statesData)
         Console.WriteLine("{0,-12}{1,18:N0}{2,18:N0}{3,15:N0}{4,12:P1}", 
                           stateData.Item1, stateData.Item2, 
                           stateData.Item3, stateData.Item4, stateData.Item5/100);      
   }
}
// The example displays the following output:
//    State          Population 1990   Population 2000         Change    % Change
//    
//    California          29,760,021        33,871,648      4,111,627      13.8 %
//    Illinois            11,430,602        12,419,293        988,691       8.6 %
//    Washington           4,866,692         5,894,121      1,027,429      21.1 %
open System

// Define array of tuples reflecting population change by state, 1990-2000.
let statesData = 
    [| Tuple.Create("California", 29760021, 33871648, 4111627, 13.8)
       Tuple.Create("Illinois", 11430602, 12419293, 988691, 8.6)
       Tuple.Create("Washington", 4866692, 5894121, 1027429, 21.1) |]

// Display the items of each tuple
printfn "%-12s%18s%18s%15s%12s\n" "State" "Population 1990" "Population 2000" "Change" "% Change"
for stateData in statesData do
    printfn $"{stateData.Item1,-12}{stateData.Item2,18:N0}{stateData.Item3,18:N0}{stateData.Item4,15:N0}{stateData.Item5,12:P1}"
// The example displays the following output:
//    State          Population 1990   Population 2000         Change    % Change
//    
//    California          29,760,021        33,871,648      4,111,627      13.8 %
//    Illinois            11,430,602        12,419,293        988,691       8.6 %
//    Washington           4,866,692         5,894,121      1,027,429      21.1 %
Module Example
   Public Sub Main()
      ' Define array of tuples reflecting population change by state, 1990-2000.
      Dim statesData() = 
          { Tuple.Create("California", 29760021, 33871648, 4111627, 13.8), 
            Tuple.Create("Illinois", 11430602, 12419293, 988691, 8.6), 
            Tuple.Create("Washington", 4866692, 5894121, 1027429, 21.1) }
      ' Display the items of each tuple
      Console.WriteLine("{0,-12}{1,18}{2,18}{3,15}{4,12}", "State", "Population 1990", _
                        "Population 2000", "Change", "% Change")
      Console.WriteLine()
      For Each stateData As Tuple(Of String, Integer, Integer, Integer, Double) In statesData
         Console.WriteLine("{0,-12}{1,18:N0}{2,18:N0}{3,15:N0}{4,12:P1}", _
                           stateData.Item1, stateData.Item2, _
                           stateData.Item3, stateData.Item4, stateData.Item5/100)      
      Next                                                                    
   End Sub
End Module
' The example displays the following output:
'    State          Population 1990   Population 2000         Change    % Change
'    
'    California          29,760,021        33,871,648      4,111,627      13.8 %
'    Illinois            11,430,602        12,419,293        988,691       8.6 %
'    Washington           4,866,692         5,894,121      1,027,429      21.1 %

설명

다음 두 가지 방법 중 하나로 구성 요소의 형식을 Item2 동적으로 확인할 수 있습니다.

  • 속성에서 GetType 반환되는 값에 대해 메서드를 호출합니다 Item2 .

  • 개체를 Type 나타내는 Tuple<T1,T2,T3,T4> 개체를 검색하고 해당 메서드에서 반환 Type.GetGenericArguments 되는 배열에서 두 번째 요소를 검색합니다.

적용 대상