migrating an app from 1.1 to 2.0. should i remove all uses of collectionbase.. if so what is the best strategy for migration.
|
|
Yes, the best classes to look at are in System.Collections.Generic. There are two approaches you can use either: A
B
The two approaches only differ very slightly and you only need to use method (B) if you plan on extending the functionality of List. Here's a link with more info: With regards to the classes that you've already implemented, you can remove all of the functions which are specified in the IList interface. e.g.
This can be removed because List already implements a type safe Add function for you. See this link for more information: |
||||||||||
|
|
|
I prefer Mark Ingrams A) approach, possibly with a base class you write yourself. There is another issue with migrating to generics; converting has a tendency to have a certain viral effect. You may find it impossible to stop before you're all the way through. If you THOUGHT you were going to spend a couple of hours doing SOME generics, you'll often find yourself spending several days doing ALL the generics. You can/should avoid this by giving your new classes operator overloads to/from list
These are really just stopgaps. You can use "find usages" on these at any later stage to determine which places have not been fully converted. When all usages are removed, you can delete the casts. I generally perfer to make the cast from MyClass to List explicit (this is the way you dont want to go) and the other implicit. The best approach would then normally be to start at the TOP of your layers, close to the presentation layer and work downwards. (This is opposite of what you might think. If you make the cast from MyClass to List implicit it doesnt matter which end you start) |
||
|
|
|
|
Generally, |
||
|
|
