CaptureCollection.IList<Capture>.Item[Int32] プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定したインデックス位置にある要素を取得します。
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[] 同じインデックス作成機能を提供する 既定 のプロパティとして を実装します。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET