Ok...here\'s a softball question...
I just need to be able to insert a key/value pair into an object at a specific position. I\'m currently working with a Hashtable whic
I would use the Dictionary<TKey, TValue> (so long as each key is unique).
EDIT: Sorry, realised you wanted to add it to a specific position. My bad. You could use a SortedDictionary but this still won't let you insert.