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 an
theList.ForEach(delegate(theObject obj) { dic.Add(obj.Id, obj.Description); });