我发现在System.Collections.ArrayList.cs
:
public class ArrayList : IList, ICollection, IEnumerable, ICloneable
但
public interface IList : ICollection, IEnumerable
和
public interface ICollection : IEnumerable
为什么不
public class ArrayList : IList, ICloneable
和
public interface IList : ICollection
?
我很混乱。谁能帮我?