查看了MSDN的.NET类库中CollectionBase类的内容, 其中:提到了属性 (IList.Item) 和 (IList.IsReadOnly)语法如下:
Object IList.Item[
    int index
] { get; set; }bool IList.IsReadOnly { get; }请问,写法IList.Item 是指Item是IList接口类型变量吗?还是指什么意思,或者是指CollectiongBase继承了接口IList,而
Item是接口IList 里面的属性呢?这样的写法我不懂,请高人指导
IList.IsReadOnly写法也是这样,同问