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 ...
1
vote
4answers
248 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> ...