Collection<T>.Items 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取 IList<T> 周围的 Collection<T> 包装。
protected:
property System::Collections::Generic::IList<T> ^ Items { System::Collections::Generic::IList<T> ^ get(); };
protected System.Collections.Generic.IList<T> Items { get; }
member this.Items : System.Collections.Generic.IList<'T>
Protected ReadOnly Property Items As IList(Of T)
属性值
IList<T> 周围的 Collection<T> 包装。
注解
包装器提供 类的功能 IList<T> ,并公开 的所有元素 Collection<T>。
检索此属性的值的运算复杂度为 O(1)。