How can I expose a List so that it is readonly, but can be set privately?
List
This doesn\'t work:
public List myList
Return a ReadOnlyCollection, which implements IList<>
private List myList; public IList MyList { get{return myList.AsReadOnly();} }