Does anyone know a good resource to concisely explain the different types of lists available in C# and when their usage is appropriate?
For example, List, Hashtable, Dictionaries etc.
I'm never quite sure when I should be using what.
|
Does anyone know a good resource to concisely explain the different types of lists available in C# and when their usage is appropriate? For example, List, Hashtable, Dictionaries etc. I'm never quite sure when I should be using what. |
||||
|
|
|
These aren't all lists, although they're all collections. Here's a quick summary. Non-generic collections (API is in terms of These are mostly in the System.Collections namespace:
Generic collections. (Strongly-typed API, will not box value types (assuming suitable T). These are mostly in the System.Collections.Generic namespace:
Possibly the most important collection interface is IEnumerable (and IEnumerable<T>). This represents a sequence of items much like a Stream represents a sequence of bytes. There is no random access, just forward-reading. LINQ to Objects is based on this, and pretty much all collection types implement it. |
|||||||||||
|
|
You should pick up a book about basic data structures. It's the same theory regardless of language. A short explanation:
In general, you should use the generic collections for almost everything you do in .NET 2.0 and higher. You will get full type-safety (compared to e.g. ArrayList and HashTable) and they are much faster for value types (integers, structs, floats etc.) compared to non generic onces. If you have a list of items that will never change, or you don't need/want the flexibility of A recommendation when you return a collection from a public method or property is to cast it to a less flexible interface. So if you have a List that you return, you could cast it to an |
||||
|
|
To expound on tobsen's earlier answer, the C5 Generic Collection Library has a large number of, well, collections. I'll describe some of them here: Queue/Stack
Lists Note:
Lists also provide a "View" functionality which represents a segment of the underlying list, allowing local operations to be performed. Using patterns offered in the C5 book, operations can be performed using views that are efficient on both array and linked lists. Any list operation can also be performed on a view, restricting their effect to a subset of the underlying list. Sorted Collections
Both Hash Collections
Priority Queue
Dictionaries
Guarded Collections As well, C5 also offers "guarded" collections, which effectively acts as a read-only wrapper, preventing the collection from being modified. Items in the collection still may be modified, but items can't be added, deleted, or inserted into the collection. A long answer, but thorough on the C5 libraries various collections at your disposal. I have found the C5 library to be great and often use it in my own code, replacing the common C# header with:
|
||||
|
|
|
Hash maps
This is a data structure that allows you to keep key-value pairs. Given a Key that has some way of being ordered, you can insert a Value. A simple example could be a list of students where the Key is the student ID, and the value the student name. Random access lists
Random access lists are used to store a long list of objects that are to be accessed randomly (i.e. you want to access the n'th element in O(1) time). It is not good if you want to insert/delete elements in the middle of the list, since that would require the entire list to be shuffled around which could take some time. Linked lists and similar
Linked lists are great if you don't want to access elements in the middle, since that would take O(N) time. It's great if you want to insert/remove elements in the middle since it only involves changing a few pointers. Queues and Stacks are slightly specialised, in that they are optimised for FIFO and FILO behaviour (First-In-First-Out and First-In-First-Out respectively). |
|||
|
|
|
If you start at the MSDN doco for System.Collections, you can drill down into the individual collection types for more details about those "lists" and how to use them. For example, the doco for There's also a nice discussion of System.Collections.Generic in Understanding Generics. |
|||
|
|
|
List<T> is sortable, but not recommended to be exposed publicly. Collection<T> is a a basic, no frills collection. Dictionary<T> is a collection of key-value pairs (much like the old hashtable, but now generic). KeyedCollection<T> is a dictionary where the key can be determined from the value (this is an abstract, so you must inherit from it and support the GetKey function) ReadOnlyCollection<T> is a special collection where the contents cannot be modified. ArrayList and HashTable are basically obsolete starting with .NET 2.0. |
|||
|
|
|
In addition to the great answers so far, there are some more Collections available via the C5 Generic Collection Library. The documentation (also on their site) may help when deciding what to use depending on your requirments. |
|||
|
|
|
MSDN has an article called Selecting a Collection Class that I find very useful when trying to figure out what kind of collection to use in a given situation. |
|||
|
|
|
These are examples of various types of general data structures. These data structures are used all over the place in software engineering. |
|||
|
|
|
Intellisense will show you a short description of each if you just type |
|||
|
|