Tagged Questions

17
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 ...
3
votes
4answers
1k views

Why doesn't ReadOnlyCollection<> include methods like FindAll(), FindFirst(),

Following the suggestions of FxCop and my personal inclination I've been encouraging the team I'm coaching to use ReadOnlyCollections as much possible. If only so that recipients of the lists can't ...
2
votes
2answers
71 views

Pattern for forcing adding to collection through method in C#

I have a class with a collection member. I would like to prevent external code from modifying this collection directly, instead using methods (which can perform the appropriate validation etc). This ...
1
vote
4answers
240 views

How to prevent a method caller from modifying a returned collection?

I have methods returning private collections to the caller and I want to prevent the caller from modifying the returned collections. private readonly Foo[] foos; public IEnumerable<Foo> ...
0
votes
1answer
109 views

Hibernate readonly collection mapping

I'm taking the following many-to-many mapping example from this Hibernate Mapping Cheat Sheet: <class name="Foo" table="foo"> ... <set role="bars" table="foo_bar"> <key ...
0
votes
4answers
525 views

Readonly collection properties that NHibernate can work with

My domain classes have collections that look like this: private List<Foo> _foos = new List<Foo>(); public virtual ReadOnlyCollection<Foo> Foos { get { return _foos.AsReadOnly(); } } ...
0
votes
2answers
350 views

how to make accessor for Dictionary in a way that returned Dictionary cannot be changed C# / 2.0

I thought of solution below because the collection is very very small. But what if it was big? private Dictionary<string, OfTable> _folderData = new Dictionary<string, OfTable>(); ...