CaptureCollection.IList<Capture>.Item[Int32] プロパティ

定義

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

property System::Text::RegularExpressions::Capture ^ System::Collections::Generic::IList<System::Text::RegularExpressions::Capture>::Item[int] { System::Text::RegularExpressions::Capture ^ get(int index); void set(int index, System::Text::RegularExpressions::Capture ^ value); };
System.Text.RegularExpressions.Capture System.Collections.Generic.IList<System.Text.RegularExpressions.Capture>.Item[int index] { get; set; }
member this.System.Collections.Generic.IList<System.Text.RegularExpressions.Capture>.Item(int) : System.Text.RegularExpressions.Capture with get, set
 Property Item(index As Integer) As Capture Implements IList(Of Capture).Item

パラメーター

index
Int32

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

プロパティ値

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

実装

注釈

このプロパティは、構文 myCollection[index] を使用して、コレクションの特定の要素にアクセスする機能を提供します。 C# 言語では、このキーワード (keyword)を使用して、 プロパティを実装する代わりにインデクサーをItem[]定義します。 Visual Basic は、 Item[] 同じインデックス作成機能を提供する 既定 のプロパティとして を実装します。

適用対象