Is there a Generic Collection with events?

  • Thread starter Thread starter Lee Grissom
  • Start date Start date
L

Lee Grissom

There's Collection<T>, but it doesn't have event hooks for items added or
removed. I was going to create a descendent that does just that, but before
I do, I want to make sure there isn't already something that exists in the
Framework.

Thanks,
Lee
 
Hello,

take a look at System.Collections.ObjectModel.Collection<T>. It's an
extensible typed collection.

Best regards,
Henning Krause
 
Back
Top