I have a collection, That needs to be ordered in the order it is created.

But then at any time The User can change the order (ie move the 4th item to the first postion)

Is there any Collections with pre-built methods?

or should I use a SortedList.

Add(key++, Object);  //pseudo code

then to change item

SwapObject(int key, int SwapKey)
{
where key == value
   tempvalue = key;
   SwapKey = key;
   key = tempvalue;
}
link|improve this question

73% accept rate
feedback

2 Answers

up vote 2 down vote accepted

You can use a generic List<> which has the Insert method, so you can insert an object in a given position any time.

link|improve this answer
feedback

You can use a simple List<YourObject> as container and implement IComparer for sorting.

List also provides methods for sorting, insert at a location or remove from a location

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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