Tuple.Create<T1, T2> Method (T1, T2)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Creates a new 2-tuple, or pair.
Assembly: mscorlib (in mscorlib.dll)
Create is a helper method that you can call to instantiate a 2-tuple object without having to explicitly specify the types of its components. The following example uses the Create method to instantiate a 2-tuple.
This code is equivalent to the following call to the Tuple<T1, T2> class constructor.
Show: