Better naming in Tuple classes than “Item1”, “Item2”

In C# 7.0 (Visual Studio 2017) there is a new construction to do that:

(string first, string middle, string last) LookupName(long id)

Leave a Comment