So I\'ve got a class and a generic List inside of it, but it is private.
class Contacts { List contacts; ... }
I wan
How about just extending List
List
If you don't want to extend any other class its a very simple, fast option:
class Contacts :List { }