http://www.abhisheksur.com/2010/11/working-with-tuple-in-c-40.html
Hey Guys, You have used Tuple in your job. If yes? Share your knowledge.
Thanks.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
mursaleen fayyazPosted Jun 4, 2013, 1:27 PM
Jignesh TrivediPosted Jun 3, 2013, 11:07 PM
hi,
A tuple is a Data structure, that has a specific number element in specific sequence.A Tuple has many items. Each item can have any type.
example
Tuple tuple = new Tuple(1000,"c-Sharp corner", true);
VulpesPosted Jun 3, 2013, 2:59 PM
Usually, in this situation I'd have created a 'named' class or struct specially for the purpose but if you're only going to use this a time or two a tuple saves hassle.