zoukankan      html  css  js  c++  java
  • Tuple Class

    Inheritance Hierarchy

     
    System.Object
      System.Tuple

    Methods

     NameDescription
    System_CAPS_pubmethodSystem_CAPS_static Create<T1>(T1)

    Creates a new 1-tuple, or singleton.

    System_CAPS_pubmethodSystem_CAPS_static Create<T1, T2>(T1, T2)

    Creates a new 2-tuple, or pair.

    System_CAPS_pubmethodSystem_CAPS_static Create<T1, T2, T3>(T1, T2, T3)

    Creates a new 3-tuple, or triple.

    System_CAPS_pubmethodSystem_CAPS_static Create<T1, T2, T3, T4>(T1, T2, T3, T4)

    Creates a new 4-tuple, or quadruple.

    System_CAPS_pubmethodSystem_CAPS_static Create<T1, T2, T3, T4, T5>(T1, T2, T3, T4, T5)

    Creates a new 5-tuple, or quintuple.

    System_CAPS_pubmethodSystem_CAPS_static Create<T1, T2, T3, T4, T5, T6>(T1, T2, T3, T4, T5, T6)

    Creates a new 6-tuple, or sextuple.

    System_CAPS_pubmethodSystem_CAPS_static Create<T1, T2, T3, T4, T5, T6, T7>(T1, T2, T3, T4, T5, T6, T7)

    Creates a new 7-tuple, or septuple.

    System_CAPS_pubmethodSystem_CAPS_static Create<T1, T2, T3, T4, T5, T6, T7, T8>(T1, T2, T3, T4, T5, T6, T7, T8)

    Creates a new 8-tuple, or octuple.

    // Create a 7-tuple.
    var population = new Tuple<string, int, int, int, int, int, int>(
                               "New York", 7891957, 7781984, 
                               7894862, 7071639, 7322564, 8008278);
    // Display the first and last elements.
    Console.WriteLine("Population of {0} in 2000: {1:N0}",
                      population.Item1, population.Item7);
    // The example displays the following output:
    //       Population of New York in 2000: 8,008,278
    //创建一个7元组。
    var population = Tuple.Create(“New York”,7891957,7781984,7894862,7071639,7322564,8003278);
    //显示第一个和最后一个元素。
    Console.WriteLine(“2000年的人口{0}:{1:N0}”,
                      population.Item1,population.Item7);
    //该示例显示以下输出:
    // 2000年纽约人口:8,008,278
  • 相关阅读:
    MySQL性能调优my.cnf详解
    PHP调试工具Xdebug安装配置教程
    【转载】Zend Studio 10正式版注册破解
    SQL 大全(3)
    SQL 大全(1)
    JQuery方法
    修改 C:Users[account name] 目录名称
    wordmate 词典安装
    Python3 之 import 和 当前目录
    初遇 dotcloud
  • 原文地址:https://www.cnblogs.com/Javi/p/6703443.html
Copyright © 2011-2022 走看看