I have the next problem.
I have a type, like Fooo : List, and I fill this collection from XAML. Is it possible to override "add" methods at List<> (Add, AddRange, Insert, etc) in Fooo, in order to implement some "add logic" (e.g. if item with some property exist - throw exception)? I'm trying to redefine "add" methods at List (using "new" keyword, but it doesn't work).
Any ideas?