vote up 12 vote down star
1

I have a list of objects, each containing an Id, Code and Description.

I need to convert this list into a Hashtable, using Description as the key and Id as the value.

This is so the Hashtable can then be serialised to JSON.

Is there a way to convert from List<Object> to Hashtable without writing a loop to go through each item in the list?

flag

75% accept rate

4 Answers

vote up 21 vote down check

Let's assume that your List contains objects of type Foo (with an int Id and a string Description).

You can use Linq to turn that list into a Dictionary like this:

var dict = myList.Cast<Foo>().ToDictionary(o => o.Description, o => o.Id);
link|flag
That example is spot on. Linq keeps solving problems left, right and centre. – Paul Shannon Oct 3 '08 at 10:23
Great stuff! This is almost identical to what I had just written using the examples from Frank's link. Thank you so much for your help :) – Sam Wessel Oct 3 '08 at 10:26
vote up 2 vote down

If you have access to Linq, you can use the ToDictionary function.

link|flag
Awesome! This is exactly what I was looking for. Thanks :) – Sam Wessel Oct 3 '08 at 10:17
vote up 1 vote down

theList.ForEach(delegate(theObject obj) { dic.Add(obj.Id, obj.Description); });

link|flag
The parallel version is very dangerous; you are assuming that the dictionary is going to be thread-safe, which it is documented as not being. Now, if there were a PFX version of ToDictionary, then that might be different - but .Add(...) - risky ;-p – Marc Gravell Oct 3 '08 at 12:19
1  
How very true! :) I've removed that implementation from my entry. – noocyte Oct 15 '08 at 12:49
Very good answer. This is a testimonial. diditwith.net/2006/10/… – JMSA Oct 18 at 18:47
JMSA: Cool, always interesting to see number like these. Won't really have a major impact on app perf., but still cool :) – noocyte Oct 19 at 10:44
And also this would work in case of .net 2.0 and later. – JMSA Nov 17 at 14:40
vote up 0 vote down

Also look at the System.Collections.ObjectModel.KeyedCollection<TKey, TItem>. It seems like a better match for what you want to do.

link|flag

Your Answer

Get an OpenID
or

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