Retrieving items from a Tuple
is done by accessing the ItemX
property.
Is there a way of naming each item so that using the Tuple will be more readable?
Code:
Looking for something like this:
Dim l As New Tuple(Of String, Integer)
l.Name
l.ID
Instead of:
Dim l As New Tuple(Of String, Integer)
l.Item1
l.Item2