次の方法で共有


ConfigurationElementCollectionBase<T>.Item[Int32] プロパティ

定義

指定したインデックス位置にある構成要素を取得します。

public:
 property T default[int] { T get(int index); };
public T this[int index] { get; }
member this.Item(int) : 'T
Default Public ReadOnly Property Item(index As Integer) As T

パラメーター

index
Int32

取得する要素の 0 から始まるインデックス。

プロパティ値

T

指定したインデックス位置にある要素。

例外

index が 0 未満です。

または

indexCount 以上になっています。

注釈

このプロパティを使用すると、次の構文を使用して、コレクション内の特定の要素にアクセスできます。 myCollection[index]

C# 言語では、this プロパティを実装する代わりに、Item[] キーワードを使用してインデクサーを定義します。 Visual Basic は、Item[] を既定のプロパティとして実装しており、同様のインデックス機能を提供します。

適用対象