I'm not looking for how, I'm looking for why? I couldn't find a straight forward answer to this.
|
Yes. CollectionBase was a previous attempt, and a way to provide type safety. Generics give you these advantages, but add two more HUGE advantages:
Edit: I thought of a couple of other compelling reasons to move your code to using generic collections:
|
||||
|
|
|
Strongly typed access to all the different kinds of collections at the cost of only typing EDIT: If you are removing existing and working code, the only reason would be for performance as mentioned elsewhere. |
|||||||||||||||
|
|
Type safety without having to write a lot of code per-type. If you look at the example in the MSDN CollectionBase documentation, you have to write a lot of boiler-plate code to make a typesafe collection of Int16. With generics it's somewhat shorter:
Every bit of code you don't have to write is code that you won't get wrong (I say that because it applies to me, I'm sure it applies to others too! ;-) |
|||
|
|
|
With CollectionBase you need to extend to provide the functionality that generics do natively. You have to write in all the plumbing to account for type safety in sub classes that you create from it. With generics there is no need to. Do you need to convert to generics? That depends on your situation, but I wouldn't use it going forward. Plus, using generics instead of collection base gives you all the extension methods written into .net to make common tasks easier. MS is pushing the use of generics and has actively developed their adoption. They will most likely continue to develop their functionality. |
|||
|
|
You want to use Generics to avoid boxing. This is a good article listing the Benefits of Generics. |
|||
|
|
|
There's another reason. LINQ. You can only use LINQ methods on a collection that implements |
||||
|