MatchCollection.IList<Match>.IndexOf(Match) メソッド

定義

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

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

パラメーター

item
Match

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

戻り値

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

実装

注釈

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

適用対象