Is there a class existing in .NET Framework 3.5 that would be equivalent to the .NET 4 Tuple?
I would like to use it in order to return several values from a method, rather than create a struct.
|
No, not in .Net 3.5. But it shouldn't be that hard to create your own.
UPDATE: Moved the static stuff to a static class to allow for implicit conversion. With the update you can write stuff like |
||||
|
|
I'm using this in my pre-4 projects:
|
|||||||||
|
|
In the event that you need them to have feature-parity with .Net 4.0 (primarily comparisson):
|
|||||||||
|
|
Yes, there is a class called System.Collections.Generic.KeyValuePair that does the same thing (since .NET 2.0 I think). |
|||
|
|
Tupleclass for two items. – Tomas Jansson Aug 19 '11 at 11:43