Collection<T>.Items 属性

定义

获取 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)。

适用于