Tagged Questions

22
votes
2answers
4k views

What's the difference between SortedList and SortedDictionary?

Maybe a silly question, but is there any real practical difference between a SortedList and a SortedDictionary? Are there any circumstances where you would specifically use one and not the other?
8
votes
5answers
866 views

LINQ into SortedList

I'm a complete LINQ newbie, so I don't know if my LINQ is incorrect for what I need to do or if my expectations of performance are too high. I've got a SortedList of objects, keyed by int; SortedList ...
7
votes
2answers
3k views

When to use a SortedList<TKey, TValue> over a SortedDictionary<TKey, TValue>?

This may appear to be a duplicate of this question, which asks "What’s the difference between SortedList and SortedDictionary?" Unfortunately, the answers do nothing more than quote the MSDN ...
3
votes
2answers
693 views

I have a sorted list of key/value pairs, and want to find the values adjacent to a new key

I have a list of key/value pairs (probably will be using a SortedList) and I won't be adding new values. Instead I will be using new keys to get bounding values. For example if I have the ...
1
vote
1answer
84 views

C# Sorting Objects By A Value

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 ...