I want to hold a list of CollidableActor objects, sorted by their property ".Position.X".
I am wondering on what would be the quickest (most efficient) method of doing this. At first I was thinking of using a SortedDictionary, and then a SortedList, but I read that SortedDictionaries are faster anyway.
Now I'm confused, because I don't know whether I want a dictionary or list. Also, when implementing the IComparable interface, and creating my CompareTo() method, would it be ample enough just to return .Position.X?
If not, is there a better structure or class that I could use that would sort things quickly as I add/remove them, according to .Position.X? (I will be adding/removing objects from the list a lot; would it be better to sort as the objects are added, or once an update, before I use the list?).
Thank you.
Edit: Infact, as all the objects will be unique, would some sort of HashSet collection be advisable? Thanks.