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 drive design?

One of the few advantages Java has over C# is this in the form of the Collections.unmodifiablelist(list) method, which it seems is long overdue in IList or List.

link|improve this question

80% accept rate
feedback

5 Answers

up vote 18 down vote accepted

You're looking for ReadOnlyCollection, which has been around since .NET2.

List<string> foo = new List<string>();
// ...
ReadOnlyCollection<string> bar = foo.AsReadOnly();
link|improve this answer
I feel a bit stupid having asked this question now - and not known about ReadOnlyCollection – Chris S Jun 12 '09 at 8:56
don't be - neither did I, when I went looking for the same thing and found Your question – Roland Tepp Feb 21 '11 at 11:33
feedback

How about ReadOnlyCollection already within the framework?

link|improve this answer
feedback

If the most common pattern of the list is to iterate through all elements, IEnumerable or IQueryable can effectively act as a read-only list as well.

link|improve this answer
If you expose your List as an IEnumerable, then the consumer could simply cast it back to List and modify it. – JulianR Jun 11 '09 at 22:36
1  
Of course, but it's not intended to be a bulletproof measure - you could also probably read the private fields and track down the original list. It's more as describing the intent that this should stay read-only. – Paul Betts Jun 11 '09 at 22:48
You're not modifying the original list by calling ToList() either, just a copy – Chris S May 25 '11 at 20:57
feedback

What's wrong with System.Collections.ObjectModel.ReadOnlyCollection?

link|improve this answer
Maybe that it is not a list? – Roland Tepp Feb 21 '11 at 11:34
feedback

In 2.0 you can call AsReadOnly to get a read-only version of the list. Or wrap an existing IList in a ReadOnlyCollection object.

link|improve this answer
Beat me to it!!!!!!!! – Jason Watts Jun 11 '09 at 22:18
that's the equivalent of Collections.unmodifiablelist(list) I was after – Chris S Jun 12 '09 at 10:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.