首页 > 代码库 > Tuple Class
Tuple Class
Inheritance Hierarchy
System.Object
??System.Tuple
??System.Tuple
Methods
Name | Description | |
---|---|---|
Create<T1>(T1) |
Creates a new 1-tuple, or singleton. |
|
Create<T1,?T2>(T1,?T2) |
Creates a new 2-tuple, or pair. |
|
Create<T1,?T2,?T3>(T1,?T2,?T3) |
Creates a new 3-tuple, or triple. |
|
Create<T1,?T2,?T3,?T4>(T1,?T2,?T3,?T4) |
Creates a new 4-tuple, or quadruple. |
|
Create<T1,?T2,?T3,?T4,?T5>(T1,?T2,?T3,?T4,?T5) |
Creates a new 5-tuple, or quintuple. |
|
Create<T1,?T2,?T3,?T4,?T5,?T6>(T1,?T2,?T3,?T4,?T5,?T6) |
Creates a new 6-tuple, or sextuple. |
|
Create<T1,?T2,?T3,?T4,?T5,?T6,?T7>(T1,?T2,?T3,?T4,?T5,?T6,?T7) |
Creates a new 7-tuple, or septuple. |
|
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
Tuple Class
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。