Tagged Questions

19
votes
5answers
5k views

ReadOnlyCollection or IEnumerable for exposing member collections?

Is there any reason to expose an internal collection as a ReadOnlyCollection rather than an IEnumerable if the calling code only iterates over the collection? class Bar { private ...
8
votes
3answers
490 views

Is there anything magic about ReadOnlyCollection

Having this code... var b = new ReadOnlyCollection<int>(new[] { 2, 4, 2, 2 }); b[2] = 3; I get a compile error at the second line. I would expect a runtime error since ...
5
votes
5answers
1k views

readonly list or unmodifiable list in .NET 4.0

From what I can tell, .NET 4.0 still lacks readonly lists. Can anyone shed light on why the framework still lacks this functionality? Isn't this one of the commonest pieces of functionality for domain ...
4
votes
1answer
50 views

What is difference between ReadOnlyCollection<T> and ReadOnlyCollectionBuilder<T> in .Net?

Today I came across a dilemma what is the difference between ReadOnlyCollection<T> and ReadOnlyCollectionBuilder<T> in .Net? In ReadOnlyCollection<T> object we cannot add and remove ...
2
votes
1answer
261 views

How does List<T> copy constructor function with ReadOnly lists?

The MSDN article doesn't really explain this. List<MyObject> FirstList = new List<MyObject>(); // Add items to FirstList. List<MyObject> SecondList = new ...
1
vote
5answers
167 views

Return ReadOnlyCollection from IList<>

OK, so List<> contains the AsReadOnly() which gives you the ReadOnlyCollection. What I need is to have a field of IList type, and a property which would return a ReadOnlyCollection for this list. ...
1
vote
2answers
207 views

Why is the SortedList(TKey,TValue).Keys property an IList(TKey) rather than a ReadOnlyCollection(TKey)?

The IList<T> interface includes access by index in addition to operations not supported by the SortedList<TKey, TValue>.Keys property such as Add, Remove, and Insert. A ...
0
votes
5answers
184 views

A ReadOnlyCollection isn't readonly. How do i create a true ReadOnlyCollection?

I'm aware that readonly collection prevents adding/removing from a list but why doesn't it prevent the setting of properties of objects in the collection. ...