Tuple - .NET 4.0 new feature
- by nmarun
Something I hit while playing with .net 4.0 – Tuple. MSDN says ‘Provides static methods for creating tuple objects.’ and the example below is: 1: var primes = Tuple.Create(2, 3, 5, 7, 11, 13, 17, 19);
Honestly, I’m still not sure with what intention MS provided us with this feature, but the moment I saw this, I said to…