Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

ArrayList declares that it implements the IList, ICollection, and IEnumeralbe interfaces.

Why not only implement IList, because IList is also derived from ICollection, and ICollection is derived from IEnumerable.

What's the purpose of this kind of declaration? There are many cases like this in .NET BCL.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
537 views
Welcome To Ask or Share your Answers For Others

1 Answer

There is no effective difference. I believe the extra declarations are there for clarity.

When checked in Reflector, classes which in code implement IList have the same interface declaration list as classes which in code declare implementing all of Ilist, ICollection and IEnumerable.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...