Instantiation Of a Tuple
Tuple

There are two ways of instantiating a tuple in .net-

-> Through using 'New' operator

Example

Tuple<String, int> t = new Tuple<String, int> ("Hellooo C# Corner", 2);

-> Through using 'Create' factory operator, available in the tuple:

Example

Tuple<int, int, int> t = Tuple.Create<int, int, int> (2, 4, 5);