I'm making an immutable struct in .Net which contains a read only collection of a different immutable struct (I have full control over the entire design). I don't need a non-mutating Add method.

What's the best way to do that?

I could make the outer struct have a reference to a ReadOnlyCollection containing the inner struct. Are there any other options?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

ReadOnlyCollection is one way.

Depending on what you need to do with the collection, you could also expose it as IEnumerable instead.

link|improve this answer
1  
+1 You could use an simple array, but array are mutable. The Array class has a static method called AsReadOnly that converts arrays to read-only collections. It returns a ReadOnlyCollection. There's no reason to differ from that. – jpbochi Aug 19 '09 at 17:14
feedback

Your Answer

 
or
required, but never shown

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