I've seen them used in a lot of the same ways, and I am worried I'm about to go down a path in design that is irreversible if I don't understand this better. Also, I am using .NET.
|
7
|
|
|
|
|
|
In short, it's much easier to extend it after the fact, which could potentially mean a lot less refactoring. |
||||
|
|
|
Consider using The above are just recommendations. [Adapted from: Framework Design Guidelines, Second Edition] |
||||||||||||
|
|
|
List represents a collection where the order of items is important. It also supports methods s.a. Sort and search. Collection is a more general data-structure which makes less assumptions about the data and also supports less methods to manipulate it. If you want to expose a custom data structure, you should probably extend the collection. If you need to manipulate data w/o exposing the data-structure, a list is probably the more convenient way to go. |
||
|
|
|
|
With LINQ, the extra methods in |
||||
|
|
|
Hanselman Speaks: " EDIT: EDIT 2: "The System.Collections.ObjectModel namespace contains classes that can be used as collections in the object model of a reusable library. Use these classes when properties or methods return collections." |
|||
|
|
|
|
Both implement the same interfaces, so they'll behave the same way. Perhaps they are implemented differently internally, but this would have to be tested. The only real differences I see are the namespaces and the fact that |
||
|
|
|
This is one of those grad school questions. A Collection of T is sort of abstract; there may be a default implementation (I'm not a .net/c# guy) but a collection will have basic operations like add, remove, iterate, and so on. List of T implies some specifics about these operations: add should take constant time, remove should take time proportional to the number of elements, getfirst should be consant time. In general, a List is a kind of Collection, but a Collection isn't necessarily a kind of List. |
||
|
|
|
|
List is faster. Do for example
on my machine Edit I can't understand why people are downvoting this. Both on my work machine and my home machine the List<> code is 80% faster. |
||||||||||
|
|
|
I really like the way this post answers the question: http://blogs.msdn.com/fxcop/archive/2006/04/27/585476.aspx |
||
|
|
