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

I have a class that inherits from a generic dictionary as follows:

Class myClass : System.Collections.Generic.Dictionary<int, Object>

I have added a list of values to this in a particular order, but I now wish to change that order. Is there any way (without removing and re-adding) that I could effectively re-index the values; so change the object at index 1 to now be at index 10 for example? For example, this doesn't work:

myClass[1].Index = 10;
share|improve this question
Why is removing and adding a problem? – Preet Sangha Mar 31 '10 at 12:47
@Preet Sangha - This wouldn't gaurentee index! – Stevo3000 Mar 31 '10 at 12:52

8 Answers

up vote 9 down vote accepted

Dictionaries by themselves don't have an index order. Consider inheriting from the KeyedCollection class instead. It's a merge of a dictionary and an ordinary list, and it's designed to use a member of your items as the key, and have an index order.

share|improve this answer
+1 - I never knew about this class; I always self coded this behaviour. – Stevo3000 Mar 31 '10 at 12:57
Thanks - this looks like exactly what I need – pm_2 Mar 31 '10 at 13:57

Have a look at the SortedDictionary class where you can sort your items by the key.

Normally, you cannot change the index of items in Dictionary because it is against the principle ;-)

share|improve this answer

Dictionaries (or more generally hashtables) do not have indicies. This goes for all languages.

share|improve this answer

For purposes of enumeration, each item in the dictionary is treated as a KeyValuePair structure representing a value and its key. The order in which the items are returned is undefined.

Taken from MSDN.

share|improve this answer

Take a look at this question. Not a duplicate but I think it fully applies to you. They suggest you have two collections: both a dictionary (for lookups) and a List (for keeping an order that isn't sortable). If these are reference types, then you shouldn't be too concerned about memory usage here since you're only duplicating pointers (unless, of course, you have a bajillion items in here).

share|improve this answer

Dictionary<> is an unordered collection, you'll only get the elements out of it in the order you put them in by accident. You'll need a SortedDictionary<>.

share|improve this answer

Old topic, but nevertheless the answers are not all valid

You can use Linq to achieve this.

Dictionary<int, string> Breadcrumbs = new Dictionary<int, string>();
Breadcrumbs.Add(1, "Test1");
Breadcrumbs.Add(2, "Test2");
Breadcrumbs.Add(3, "Test3");
Breadcrumbs.Add(4, "Test4");
Breadcrumbs.Add(5, "Test5");

var q = Breadcrumbs.OrderByDescending(x => x.Key);

// And bind it
gridView.DataSource = q;
gridView.DataBind();
share|improve this answer

I have added a list of values to this in a particular order

There is no such thing like particular order for Dictionary. Perhaps you can look at SortedList. It supports indexing for keys and values but adding / removal are O(n) complexity vs O (log N) for SortedDictionary.

share|improve this answer

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.