WizardStepCollection.IList.Item[Int32] 属性

定义

获取集合中指定索引处的对象。

property System::Object ^ System::Collections::IList::Item[int] { System::Object ^ get(int index); void set(int index, System::Object ^ value); };
object System.Collections.IList.Item[int index] { get; set; }
member this.System.Collections.IList.Item(int) : obj with get, set
 Property Item(index As Integer) As Object Implements IList.Item

参数

index
Int32

要从集合中获取的对象的索引。

属性值

要检索的对象。

实现

注解

通过使用以下语法,此属性提供访问集合中特定元素的能力:myCollection[index]。

适用于

另请参阅