Consider the following expressions:
new Tuple(1,2); Tuple.Create(1,2);
Is there any difference between these two methods of Tup
Starting with C# 7, you can now simply declare Value Tuple like so:
var unnamed = (1, 2);
or
var named = (name: "Joe", age: 2);
See microsoft documentation here: https://docs.microsoft.com/en-us/dotnet/csharp/tuples