Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
CollectionBase抽象クラス(System.Collectionsから派生IList)でIListメンバーが実装されていない理由を誰かが私に説明しますか?義務だと思いました。
CollectionBase
System.Collections
IList
IList 明示的に実装されるため、これらのメンバーにアクセスするには、CollectionBaseインスタンスをキャストする必要があります。IList
IList list = (IList)collectionBase; list.Add(...);