The MSDN article doesn't really explain this.
List<MyObject> FirstList = new List<MyObject>();
// Add items to FirstList.
List<MyObject> SecondList = new List<MyObject>(FirstList.AsReadOnly());
// Is SecondList a read-only collection?
|
The MSDN article doesn't really explain this.
| ||||
|
feedback
|
|
No, the second list is not read-only, it's still a List generated from an Instead, you've created a new In the case of a
....as far as the second list is concerned. In other cases where the | ||||
|
feedback
|