ReadOnlyCollection<T> realises the ICollection<T> interface which has methods like Add and Remove. I know how to hide methods from Intellisense using attributes, but how is it possible to cause an actual compilation error if I try to use these methods?

(Btw, I know it doesn't make sense to call Add and Remove on a ROC, it's a question on causing compilation error for inherited memebers, not on using the correct data structure).

link|improve this question

feedback

2 Answers

up vote 8 down vote accepted

They're implemented with explicit interface implementation, like this:

void ICollection<T>.Add(T item) {
    throw NotSupportedException();
}

The method is still callable, but only if you view the object as an ICollection<T>. For example:

ReadOnlyCollection<int> roc = new ReadOnlyCollection<int>(new[] { 1, 2, 3 });
// Invalid
// roc.Add(10);

ICollection<int> collection = roc;
collection.Add(10); // Valid at compile time, but will throw an exception
link|improve this answer
I think I finally understand a use for explicit implementation! Thanks – RichK Nov 8 '10 at 8:10
feedback

Indeed, by implementing those methods from the ICollection<T> interface explicitly, you cannot call them directly.
You'll have to cast the object (the ReadOnlyCollection instance) to ICollection<T> explicitly. Then, you can call the Add method. (Hence, the compiler won't complain, although you'll get a runtime exception).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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