C#/.NET Little Wonders: Tuples and Tuple Factory Methods
- by James Michael Hare
Once again, in this series of posts I look at the parts of the .NET Framework that may seem trivial, but can really help improve your code by making it easier to write and maintain. This week, we look at the System.Tuple class and the handy factory methods for creating a Tuple by inferring the types.
What is a Tuple?
The System.Tuple is a…