T
ThunderMusic
Hi,
I have the following :
private List<int> _myList = new List<int>();
public List<int> myList
{
get { return _myList; }
}
What I want is that the user cannot modify the content of the list, it can
only see what's in it. Is it something I can do or will I have to implement
my own collection class based on List<>?
thanks
ThunderMusic
I have the following :
private List<int> _myList = new List<int>();
public List<int> myList
{
get { return _myList; }
}
What I want is that the user cannot modify the content of the list, it can
only see what's in it. Is it something I can do or will I have to implement
my own collection class based on List<>?
thanks
ThunderMusic