當前位置: 首頁>>代碼示例>>VB.NET>>正文


VB.NET Tuple<T1,T2,T3,T4,T5>.Item3屬性代碼示例

本文整理匯總了VB.NET中System.Tuple<T1,T2,T3,T4,T5>.Item3屬性的典型用法代碼示例。如果您正苦於以下問題:VB.NET Tuple<T1,T2,T3,T4,T5>.Item3屬性的具體用法?VB.NET Tuple<T1,T2,T3,T4,T5>.Item3怎麽用?VB.NET Tuple<T1,T2,T3,T4,T5>.Item3使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在System.Tuple<T1,T2,T3,T4,T5>的用法示例。


在下文中一共展示了Tuple<T1,T2,T3,T4,T5>.Item3屬性的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的VB.NET代碼示例。

示例1: Example

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
開發者ID:VB.NET開發者,項目名稱:System,代碼行數:18,代碼來源:Tuple.Item3

輸出:

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 %


注:本文中的System.Tuple<T1,T2,T3,T4,T5>.Item3屬性示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。