How can I expose a List so that it is readonly, but can be set privately?
List
This doesn\'t work:
public List myList
private List myList; public string this[int i] { get { return myList[i]; } set { myList[i] = value; } }