0

谁能向我解释为什么在抽象CollectionBase类(System.Collections其中派生自IList)中没有IList实现成员?我认为这是强制性的。

System.Collection.CollectionBase

4

1 回答 1

2

IList 显式地实现,因此您需要将您的CollectionBase实例强制转换IList为访问这些成员。

IList list = (IList)collectionBase;
list.Add(...);
于 2013-02-24T22:02:52.230 回答