CodeDirectiveCollection.IndexOf(CodeDirective) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定した CodeDirective オブジェクトがコレクション内に存在する場合は、コレクション内でのそのインデックスを取得します。
public:
int IndexOf(System::CodeDom::CodeDirective ^ value);
public int IndexOf (System.CodeDom.CodeDirective value);
member this.IndexOf : System.CodeDom.CodeDirective -> int
Public Function IndexOf (value As CodeDirective) As Integer
パラメーター
- value
- CodeDirective
コレクション内で検索する CodeDirective オブジェクト。
戻り値
見つかった場合はコレクション内での指定したオブジェクトのインデックス位置。それ以外の場合は -1。
例
次のコード例は、 メソッドを IndexOf 使用して、指定した CodeDirective オブジェクトのコレクション内のインデックスを取得する方法を示しています。 この例は、 クラスに対して提供されるより大きな例の CodeDirectiveCollection 一部です。
// Tests for the presence of a CodeDirective in the
// collection, and retrieves its index if it is found.
CodeDirective testDirective = new CodeRegionDirective(CodeRegionMode.Start, "Region1");
int itemIndex = -1;
if (collection.Contains(testDirective))
itemIndex = collection.IndexOf(testDirective);
' Tests for the presence of a CodeDirective in the
' collection, and retrieves its index if it is found.
Dim testDirective = New CodeRegionDirective(CodeRegionMode.Start, "Region1")
Dim itemIndex As Integer = -1
If collection.Contains(testDirective) Then
itemIndex = collection.IndexOf(testDirective)
End If
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET