What's the difference between Tuple.Create() vs new Tuple?
C# provides a way to store items of different types, called a Tuple. Maybe the objects are loosely related, but you don't want to define a whole new class. There are two ways to create a Tuple - list the object types explicitly or use Tuple.Create. But what's the difference, if there even is one?
Read more
Share