ValueTuple是C#7.0中引入的结构,表示值类型Tuple。它允许您存储一个数据集,该数据集包含可能彼此相关或不相关的多个值。 Item3属性用于获取给定值元组的第三个未命名元素。它适用于每个值元组,例如3-ValueTuple,4-ValueTuple等。
句法:
public T3 Item3;
在此,T3是ValueTuple <>结构的字段值。此ValueTuple <>可以是3-ValueTuple或4-ValueTuple或5-ValueTuple或6-ValueTuple或7-ValueTuple或8-ValueTuple。
示例:在下面的代码中,您可以看到我们正在访问每个值元组的第三个元素。
// C# program to illustrate how to get
// the third element of value tuple
using System;
class GFG {
// Main Method
static public void Main()
{
Console.WriteLine("C# Topics:");
// Creating a value tuple
// with three elements
var ValTpl3 = ValueTuple.Create("ArrayList",
"List", "Queue");
// Accessing the third element of
// 3-ValueTuple using Item property
Console.WriteLine(ValTpl3.Item3);
// Creating a value tuple
// with four elements
var ValTpl4 = ValueTuple.Create("Stack", "Dictionary",
"LinkedList", "Interface");
// Accessing the third element of
// 4-ValueTuple using Item property
Console.WriteLine(ValTpl4.Item3);
// Creating a value tuple with five elements
var ValTpl5 = ValueTuple.Create("Identifiers", "Data Types",
"Keywords", "Access Modifiers", "Operators");
// Accessing the third element of
// 5-ValueTuple using Item property
Console.WriteLine(ValTpl5.Item3);
// Creating a value tuple with six elements
var ValTpl6 = ValueTuple.Create("Nullable Types", "Class",
"Structure", "Indexers", "Switch Statement", "Loops");
// Accessing the third element of
// 6-ValueTuple using Item property
Console.WriteLine(ValTpl6.Item3);
// Creating a value tuple with seven elements
var ValTpl7 = ValueTuple.Create("Inheritance ", "Constructors",
"Encapsulation", "Abstraction", "Static Class",
"Partial Classes", "this keyword");
// Accessing the third element of
// 7-ValueTuple using Item property
Console.WriteLine(ValTpl7.Item3);
// Creating a value tuple with eight elements
var ValTpl8 = ValueTuple.Create("Methods", "Method Hiding",
"Optional Parameters", "Anonymous Method",
"Partial Methods", "Local Function", "Delegates",
"Destructors");
// Accessing the third element of
// 8-ValueTuple using Item property
Console.WriteLine(ValTpl8.Item3);
}
}
输出:
C# Topics:
Queue
LinkedList
Keywords
Structure
Encapsulation
Optional Parameters