Tuple.Create<T1> Method (T1)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Creates a new 1-tuple, or singleton.
Assembly: mscorlib (in mscorlib.dll)
Create is a helper method that you can call 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 code is equivalent to the following call to the Tuple<T1> class constructor.