次の方法で共有


CodeStatementCollection.IndexOf メソッド

指定した CodeStatement がコレクション内に存在する場合は、コレクション内でのそのインデックスを取得します。

Public Function IndexOf( _
   ByVal value As CodeStatement _) As Integer
[C#]
public int IndexOf(CodeStatementvalue);
[C++]
public: int IndexOf(CodeStatement* value);
[JScript]
public function IndexOf(
   value : CodeStatement) : int;

パラメータ

戻り値

見つかった場合はコレクション内での指定したオブジェクトのインデックス。それ以外の場合は -1。

使用例

 
' Tests for the presence of a CodeStatement in the 
' collection, and retrieves its index if it is found.
Dim testStatement = New CodeCommentStatement("Test comment statement")
Dim itemIndex As Integer = -1
If collection.Contains(testStatement) Then
    itemIndex = collection.IndexOf(testStatement)
End If

[C#] 
// Tests for the presence of a CodeStatement in the 
// collection, and retrieves its index if it is found.
CodeStatement testStatement = new CodeCommentStatement("Test comment statement");
int itemIndex = -1;
if( collection.Contains( testStatement ) )
    itemIndex = collection.IndexOf( testStatement );

[C++] 
// Tests for the presence of a CodeStatement in the 
// collection, and retrieves its index if it is found.
CodeStatement* testStatement = new CodeCommentStatement(S"Test comment statement");
int itemIndex = -1;
if( collection->Contains( testStatement ) )
    itemIndex = collection->IndexOf( testStatement );

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ

参照

CodeStatementCollection クラス | CodeStatementCollection メンバ | System.CodeDom 名前空間 | Contains