Property Grid and Collection Class
Hi,
I have a Collection class (derived from Generic List class. I have to override as I need to overload some functionalities.) which I am binding to Property Grid. When I do this I get a Collection Type Editor Provided by the MSFT and clicking on which I can add elements to my Collection class. Till this everything is fine. The issue is when I add some thing to my collection I want to Raise a custom event. As I read some wonderfull article (MSDN Mag) which said try using Generic Collection which gives better performance, my collection class is deriving from Generic Collection. But I am not able to override the Add method as it is no more virtual class in Generic List Collection. If I just put a new keyword and try implementing the Add method in my class still it doesn't work. Please suggest me, should I rollback to CollectionBase class instead of List Generic class or I have to do something else.
Regards,
Vinod S Nair

