difference Tuple<int, double> vs. (int, double)

37 Views Asked by At

What is the difference in using

Tuple<int, double> myTuple = new Tuple<int, double>(3, 5.0);

and

(int, double) myCombinedVariable = (3, 5.0);

in C#?
And most important: Are there any differences regarding performance?

0

There are 0 best solutions below