Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a class that maintains list of objects of another class. List of objects is a public property. I would like to prevent users from adding and removing objects directly to list like this:

      MyObject.MyListProperty.Add(object);

Instead I want them to use method that will internally do some processing and then add object to list.

I have some ideas:

  • create descendant of List<T> and override add and remove
  • return fresh copy of list through property getter (list is relatively short, not more than 30 objects)

Is there some collection interface that does not have Add and Remove?

Edit:
I'm going to go with ReadOnlyCollection<T>. Reason is that wrapped collection can be updated and changes will be immediately visible in read only object (see MSDN code examples for ReadOnlyCollection<T> and AsReadOnly()). This allows that read only list be created only once.

The problem with IEnumerable is that object can be casted back to original List<T> and then directly manipulated.

share|improve this question
I was also looking for this +1 – Ravisha Feb 1 '10 at 12:56

7 Answers

up vote 25 down vote accepted

You can use ReadOnlyCollection - wrap your collection in this and return the ReadOnlyCollection to users of your class:

return new ReadOnlyCollection(innerCollection);

Or using the AsReadOnly method of the List<T> class:

return innerCollection.AsReadOnly();

The IEnumerable interface will do what you need, as it only has one member GetEnumerator(), that will only let you iterate over items.

share|improve this answer
1  
AsReadOnly (msdn.microsoft.com/en-us/library/e78dcd75.aspx) isn't Linq – Rob Fonseca-Ensor Feb 1 '10 at 12:36
Thanks for the correction - fixed! – Oded Feb 1 '10 at 12:52

Your easiest option would be to expose your list as one of the following IEnumerable, ICollection ReadOnlyCollection via a public property.

So you could create your own type of list which exposes your Items as one of the above but has an internal method for the adding e.g.

public class MyList<MyType>
{
    private List<MyType> items;

    public MyList()
    {
        items = new List<MyType>();
    }

    public IEnumerable Items { get { return items.AsEnumerable(); } }
    public Add(MyType item)
    {
        // do internal processing
        items.Add(item);
    }
}
share|improve this answer
Cool +1 for the explanation – Ravisha Feb 1 '10 at 12:56
2  
Note that this doesn't prevent casting the collection back to List<MyType> and calling Add on it. ReadOnlyCollection is the way to go if you really need to prevent Adds. Also, there's no need to call items.AsEnumerable and I don't think this will compile as written because AsEnumerable() will return IEnumerable<MyType> and Items is typed as IEnumerable. – Jamie Ide Feb 1 '10 at 13:01
@Jamie IEnumerable<MyType> inherits from IEnumerable, so it will compile, but I agree that they should return IEnumerable<MyType>, and that AsEnumerable is redundant. – Rob Fonseca-Ensor Feb 1 '10 at 13:06
@Jamie, it will compile, however, I do agree the cast is possible. This was just an example to show what the user can do as I have mentioned previously in the post that ReadOnlyCollection is an option. Cheers. – James Feb 1 '10 at 13:21

Maybe AsReadOnly method will do the trick, to hand a read-only instance to public.

Otherwise, IEnumerable<T> has no Add nor Remove, so you can do something like:

private List<int> _myList;
public IEnumerable<int> MyList
{
   get
   {
      return this._myList.ToList();
   }
}

I would rather go for the IEnumerable<T> (+ copy) as for ReadOnlyCollection<T>, because: changes to your base list (which your read-only collection is created from) will immediately show up in your instance of the read-only collection. this may cause locking and straaange problems :)

share|improve this answer
why return this._myList.ToList(); and not return this._myList; – Rob Fonseca-Ensor Feb 1 '10 at 12:34
What about IList<int> and ToArray? Best of both worlds, no? – Dan Tao Feb 1 '10 at 12:35
IList has an Add method, so the list wouldn't be readonly, and you can change the contents of an array (not that that would affect this class since the array is a copy). The only interface that solves the OP's problem is IEnumerable – Rob Fonseca-Ensor Feb 1 '10 at 13:08
i'm not that fan of arrays... dunno why ... if you hack my example a bit more, you can have a true iterator-pass-through implementation , which is much more better than creating another object (array) to iterate through elements! – Andreas Niedermair Feb 1 '10 at 13:10
@Rob Fonseca-Ensor: simple: hand out a copy, not the same ref. the caller my cast it to a list and can modified your internal datastore! – Andreas Niedermair Feb 1 '10 at 21:18

Out of the box, only IEnumerable<T> will provide this without exposing any Add and Remove public methods that might trick the client into getting a runtime exception.

If you want your public API to explicitely state that the collection is read-only and you need an indexer, you will have to write your own wrapper around existing List<T> or T[].

share|improve this answer

You could just give them an object which always returns an enumerator that they can use to access the structure?

share|improve this answer

Doesn't really answer your question, but is useful information if you decide to implement one of your two ideas: You can use ToArray to create a copy and return an array.

Or you can do something like this: http://en.csharp-online.net/CSharp_Generics_Recipes%E2%80%94Making_Read-Only_Collections_the_Generic_Way

share|improve this answer

ICollection (the non-generic version) only got IEnumerable + Count

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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