I frequently expose typed collections and lists. Often when exposing collections and lists I am not happy with the Add and Remove methods being public. In older versions of .Net I have implemented IEnumerable but this is a lot of work.
What are the better alternatives?
I have seen questions similar to this, but not specifically about the Add / Remove accessors
Thanks.