ITuple.Item[Int32] Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the value of the specified Tuple
element.
public:
property System::Object ^ default[int] { System::Object ^ get(int index); };
public object? this[int index] { get; }
public object this[int index] { get; }
member this.Item(int) : obj
Default Public ReadOnly Property Item(index As Integer) As Object
Parameters
- index
- Int32
The index of the specified Tuple
element. index
can range from 0 for Item1
of the Tuple
to one less than the number of elements in the Tuple
.
Property Value
The value of the specified Tuple
element.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.