.Net 3.5 doesn't support tuples. Too bad, But not sure whether the future version of .net will support tuples or not?
feedback
|
|
I've just read this article from the MSDN Magazine: Building Tuple Here are excerpts:
While some languages like F# have special syntax for tuples, you can use the new common tuple type from any language. Revisiting the first example, we can see that while useful, tuples can be overly verbose in languages without syntax for a tuple:
Using the var keyword from C# 3.0, we can remove the type signature on the tuple variable, which allows for somewhat more readable code.
We've also added some factory methods to a static Tuple class which makes it easier to build tuples in a language that supports type inference, like C#.
| ||||
|
feedback
|
And to make declarations prettier:
| |||||||||||||||
feedback
|
|
There is a proper (not quick) C# Tuple implementation in Lokad Shared Libraries (Open-source, of course) that includes following required features:
| |||
|
feedback
|
|
Implementing Tuple classes or reusing F# classes within C# is only half the story - these give you the ability to create tuples with relative ease, but not really the syntactic sugar which makes them so nice to use in languages like F#. For example in F# you can use pattern matching to extract both parts of a tuple within a let statment, eg
Unfortunately to do the same using the F# classes from C# would be much less elegant:
Tuples represent a powerful method for returning multiple values from a function call without the need to litter your code with throwaway classes, or resorting to ugly ref or out parameters. However, in my opinion, without some syntactic sugar to make their creation and access more elegant, they are of limited use. | |||||||
feedback
|
|
In my opinion, the anonymous types feature is not a tuple, but a very similar construct. The output of some LINQ Queries are collections of anonymous types, which behave like tuples. Here is a statement, which creates a typed tuple :-) on the fly:
see: http://www.developer.com/net/csharp/article.php/3589916 | ||||
|
feedback
|
|
Here's my set of tuples, they're autogenerated by a Python script, so I've perhaps gone a bit overboard: You'll need a username/password, they're both guest They are based on inheritance, but They also implement GetHashCode and ToString and so forth, and lots of smallish helper methods. Example of usage:
Will output:
| ||||
|
feedback
|
|
My open source .NET Sasa library has had tuples for years (along with plenty of other functionality, like full MIME parsing). I've been using it in production code for a good few years now. | |||
|
feedback
|
|
C# supports simple tuples via generics quite easily (as per an earlier answer), and with "mumble typing" (one of many possible C# language enhancements) to improve type inference they could be very, very powerful. For what it is worth, F# supports tuples natively, and having played with it, I'm not sure that (anonymous) tuples add much... what you gain in brevity you lose very quickly in code clarity. For code within a single method, there are anonymous types; for code going outside of a method, I think I'll stick to simple named types. Of course, if a future C# makes it easier to make these immutable (while still easy to work with) I'll be happy. | |||||||
feedback
|
|
If I remember my Computer Science classes correctly tuples are just data. If you want grouped data - create classes that contain properties. If you need something like the KeyValuePair then there it is. | |||||
feedback
|
|
To make these useful in a hashtable or dictionary, you will likely want to provide overloads for GetHashCode and Equals. | |||
|
feedback
|
|
| ||||
feedback
|
|
I'd be surprised - C# is a strongly-typed language, whereas tuples are suited for more dynamically typed languages. C# has been drifting more dynamic as time goes on, but that's syntactic sugar, not a real shift in the underlying data types. If you want two values in one instance, a KeyValuePair<> is a decent substitute, albeit clumsy. You can also make a struct or a class that'll do the same thing, and is expandable. | |||||||||
feedback
|