Would anyone explain to me why in the abstract CollectionBase class (in System.Collections which derives from IList) it does not have the IList members implemented? I thought it was obligatory.

Would anyone explain to me why in the abstract CollectionBase class (in System.Collections which derives from IList) it does not have the IList members implemented? I thought it was obligatory.

Copyright © 2021 Jogjafile Inc.
It implements
IListexplicitly, so you'll need to cast yourCollectionBaseinstance toIListto access those members.