How can I change a first value in this collection?
ICollection<string> vals = new List<string>();
This does not work for the collection:
vals[0] = "xxx";
How can I change a first value in this collection?
ICollection<string> vals = new List<string>();
This does not work for the collection:
vals[0] = "xxx";