Tuple(Of T1) Constructor
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Initializes a new instance of the Tuple(Of T1) class.
Assembly: mscorlib (in mscorlib.dll)
You can also use the static Tuple.Create method to instantiate a 1-tuple object without having to explicitly specify the type of its component. The following example uses the Create method to instantiate a 1-tuple whose component is of type Int32.
This is equivalent to the following call to the Tuple(Of T1) class constructor.