CaptureCollection.IList<Capture>.IndexOf(Capture) メソッド

定義

コレクション内での指定した項目のインデックスを調べます。

 virtual int System.Collections.Generic.IList<System.Text.RegularExpressions.Capture>.IndexOf(System::Text::RegularExpressions::Capture ^ item) = System::Collections::Generic::IList<System::Text::RegularExpressions::Capture ^>::IndexOf;
int IList<Capture>.IndexOf (System.Text.RegularExpressions.Capture item);
abstract member System.Collections.Generic.IList<System.Text.RegularExpressions.Capture>.IndexOf : System.Text.RegularExpressions.Capture -> int
override this.System.Collections.Generic.IList<System.Text.RegularExpressions.Capture>.IndexOf : System.Text.RegularExpressions.Capture -> int
Function IndexOf (item As Capture) As Integer Implements IList(Of Capture).IndexOf

パラメーター

item
Capture

コレクション内で検索するオブジェクト。

戻り値

リストに存在する場合は item のインデックス。それ以外の場合は -1。

実装

注釈

オブジェクトがリスト内に複数回出現する場合、IndexOf メソッドは最初に見つかったものを常に返します。

適用対象