vote up 2 vote down star

This

var h = new HashSet<int>();
var r = h.IsReadOnly;

does not compile. I have to do

var r = ((ICollection<int>)h).IsReadOnly;

why wasn't IsReadOnly implemented normally?

(I'm not asking how, but why)

flag

63% accept rate

2 Answers

vote up 8 vote down check

I'm guessing its because, while HashSet implements ICollection, IsReadOnly has no meaning for HashSet. In fact, if you reflect it, the property always returns false. Implementing it explicitly hides this method from the public interface.

Another reason is because the ICollection interface may be implemented because of incidental reasons (e.g., to support xaml serialization) rather than because its necessary to the primary use of the class. So implementing it explicitly can keep the clutter out of the class' interface.

link|flag
+1 That sounds reasonable. – Andrew Hare Apr 13 at 10:20
Ah, yes, that does make sense. HashSet also hides IsReadOnly for the same reason I guess, hence the compile error if you try to use it. – deadbeef Apr 13 at 10:30
BTW, you don't need to implement ICollection for xaml serialization; collections must implement IDictionary or IList. It was just an example of occasions when you might need to implment an interface for incidental reasons. – Will Apr 13 at 11:20
vote up 4 vote down

There are basically two reasons why you would resort to an explicit interface implementation (source: MSDN):

  1. You implement multiple interfaces with members containing the same signatures, and you want these members to behave differently.
  2. An interface member is not of particular interest to the class, but is required in order to reference objects by the interface.

For HashSet<T>, the latter case applies, as a hash set is never read only and IsReadOnly will thus always return false.

link|flag

Your Answer

Get an OpenID
or

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