TypeConverter.StandardValuesCollection.Item[Int32] 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得在指定索引編號的物件。
public:
property System::Object ^ default[int] { System::Object ^ get(int index); };
public object this[int index] { get; }
public object? this[int index] { get; }
member this.Item(int) : obj
Default Public ReadOnly Property Item(index As Integer) As Object
參數
屬性值
具有指定索引的 Object。
備註
索引編號是以零起始。 因此,您必須從特定 Object 的數值位置減去一個 ,才能存取該 Object。 例如,若要取得第三 Object個 ,您需要指定 myColl[2]
。