SynchronizedReadOnlyCollection<T>.IList<T>.Item[Int32] 属性
定义
返回集合中具有指定 index 的对象。Returns the object in the collection that has the specified index.
property T System::Collections::Generic::IList<T>::Item[int] { T get(int index); void set(int index, T value); };
T System.Collections.Generic.IList<T>.Item[int index] { get; set; }
member this.System.Collections.Generic.IList<T>.Item(int) : 'T with get, set
Property Item(index As Integer) As T Implements IList(Of T).Item
参数
- index
- Int32
要从集合中检索的元素的从零开始的索引。The zero-based index of the element to be retrieved from the collection.
属性值
- T
集合中具有指定 index 的对象。The object in the collection that has the specified index.