I have read about the Tuples provided with the coming-out of the new .NET Framework features, and still am I wondering about how it could be useful in real-world enterprise applications.

Can one give me a brief explanation along with a simple but real-world code sample?

Thanks! =)

link|improve this question

2  
You have a lot of questions like these, don't you? :) – Robert Harvey May 27 '10 at 18:16
The "What is the benefit and a common real-world practical application..." questions are getting old. – Justin Niessner May 27 '10 at 18:18
@Robert Harvey: Yes I have. Sorry. I only wish to get up and running in .NET 4.0, using the benefits it provides. Even though I have read about these features, sometimes I can't get a grab on it. I find it easier when some probably more experienced and perhaps better bring their vision or understanding of the thing. – Will Marcouiller May 27 '10 at 18:22
@Justin Niessner: Sorry! I tried recently to group my questions into only one big question, and it has gotten closed for being too broad. I have been suggested to post a question for each feature instead. So do I. =S – Will Marcouiller May 27 '10 at 18:23
2  
I find that podcasts serve really well as an "introduction to features," and a way to survey technologies and understand in a high-level way where they are used. HanselMinutes and DotNetRocks are especially good. – Robert Harvey May 27 '10 at 18:24
show 1 more comment
feedback

4 Answers

up vote 3 down vote accepted

Tuples aren't currently all that large a benefit in C#, because there isn't any neat syntax for them. However, the concept is very common in functional languages such as F# (new to .NET 4.0).

So, if you're writing part of your application in F# or if you're using libraries written in F#, you might run into them. If you're using only C#, I'd say you're better off using anonymous types. They allow you to name the various properties, whereas they will be called Item1 through ItemX using tuples. Not very descriptive.

Of course, if you want to return multiple values (with different types) from a method, using anonymous types isn't an option, in which case using tuples might be a decent solution if you're making something quick and dirty.

link|improve this answer
Shame that there's no sugar for them in C#, because yeah, they are really useful to have sometimes. – Chris Charabaruk May 27 '10 at 20:04
feedback

A tuple is just a simple way to return multiple values from a function.

link|improve this answer
Don't think this was the main purpose for creating them – Kamarey May 27 '10 at 18:41
@Kamarey: What is the main purpose for creating them? @Thorarin says it is more likely to be used while coding F# than C#. It also seems to be close to the anonymous types, to my understanding. – Will Marcouiller May 28 '10 at 0:16
@Will Marcouiller: I agree with Thorarin, so he got my +1. – Kamarey May 28 '10 at 7:57
feedback

The best would be easy multiple value returning, so coding performance would be an answer. It's also quite readable.

I.e:

return new Tuple<int, string, char>(1, "some string", 10.00);

Versus something like

public class ReturnMany
{
   public int intValue { get; set; }
   public string strValue { get; set; }
   public decimal decValue { get; set; }
}

return new ReturnMany() { intValue = 1, strValue = "some string", decValue = 10.00 }
link|improve this answer
feedback

Tuples in .NET are immutable so they're also an easy way to pass a bunch of values around threads. I'm currently using tuples with Retlang and they're great for use with this type of library.

link|improve this answer
Immutability could indeed be an advantage. Anonymous types can't be immutable, so the only other option would be handcrafting a class or struct. – Thorarin May 27 '10 at 18:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.