从文档(重点是我的):
[…]
Array类实现System.Collections.Generic.IList<T>,System.Collections.Generic.ICollection<T>以及System.Collections.Generic.IEnumerable<T>通用接口。
这些实现是在运行时提供给数组的,因此对于文档构建工具而言是不可见的。
编辑: 正如Jb Evain在他的评论中指出的那样,只有向量(一维数组)实现了通用接口。至于 为什么
多维数组不实现通用接口,我不确定,因为它们确实实现了非通用接口(请参见下面的类声明)。
的
System.Array类(即 每 阵列)也实现了这些非通用接口:
public abstract class Array : ICloneable, IList, ICollection, IEnumerable, IStructuralComparable, IStructuralEquatable



