MatchCollection.IList<Match>.Item[Int32] プロパティ

定義

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

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

パラメーター

index
Int32

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

プロパティ値

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

実装

注釈

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

適用対象