How can I expose a List so that it is readonly, but can be set privately?
List
This doesn\'t work:
public List myList
You can use List's AsReadOnly() method to return a read-only wrapper.