Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a built in object that handles 3 linked values in a similar fashion to the hashtable? i.e. Key, Value1, Value2?

share|improve this question

2 Answers

up vote 5 down vote accepted

I would have said generic dictionary too.

If you didn't want to do anything extensive, just make a struct or some sort of tuple out of Value1, Value2 and make those the value of your dictionary's Key. Something like:

Dictionary<Key, ThatTinyStructYouHadToCreate>

Bad idea: If you didn't like that option, as far as "built-in" goes, a DataRow in a DataTable would give you that ability. While that's a very simple way to set it up, it'd also be a remarkably inefficient (as far as execution cost) way to go about it.

share|improve this answer
I was going to suggest this, nice. – bendewey Feb 3 '09 at 23:20

You could easily make one using a generic dictionary. Something like Dictionary<Key, KeyValuePair<Key, Value>>, or even Dictionary<Key, object[]>

share|improve this answer
I thought about that - this library wasn't supposed to be heavy duty though so I was hoping not to have to build/implement anything extensive. – BenAlabaster Feb 3 '09 at 22:55
Im not quite sure I understand. Dictionary and KeyValuePair are already implemented in .NET. You wouldnt have to build anything. – Mike_G Feb 3 '09 at 23:00
Oops - I guess your whole text didn't post before I was commenting... yes, I see what you're getting at. – BenAlabaster Feb 3 '09 at 23:02
I agree with Mike_G that this is probably the quickest way to implement what you want; but it probably won't yield the most maintainable code. In my experience, having a custom class as your "Value" with well named properties will be a lot clearer to people looking at your code for the first time. – Antony Perkov Feb 3 '09 at 23:07
Don't like the object[] route, but +1 for KeyValuePair. There's a non generic Pair class somewhere in the BCL that I also use occasionally, but all I recall is that it's somewhere in one of the Control namespaces (WebControl, Control, ComponentModel or something...) – Mark Brackett Feb 4 '09 at 0:34
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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