CodeCommentStatementCollection.IndexOf メソッド
指定した CodeCommentStatement がコレクション内に存在する場合は、コレクション内でのそのインデックスを取得します。
Public Function IndexOf( _
ByVal value As CodeCommentStatement _) As Integer
[C#]
public int IndexOf(CodeCommentStatementvalue);
[C++]
public: int IndexOf(CodeCommentStatement* value);
[JScript]
public function IndexOf(
value : CodeCommentStatement) : int;
パラメータ
- value
検索する CodeCommentStatement 。
戻り値
指定した CodeCommentStatement がコレクション内に存在する場合は、そのインデックス。それ以外の場合は -1。
使用例
' Tests for the presence of a CodeCommentStatement in the
' collection, and retrieves its index if it is found.
Dim testComment As New CodeCommentStatement("Test comment")
Dim itemIndex As Integer = -1
If collection.Contains(testComment) Then
itemIndex = collection.IndexOf(testComment)
End If
[C#]
// Tests for the presence of a CodeCommentStatement in the
// collection, and retrieves its index if it is found.
CodeCommentStatement testComment = new CodeCommentStatement("Test comment");
int itemIndex = -1;
if( collection.Contains( testComment ) )
itemIndex = collection.IndexOf( testComment );
[C++]
// Tests for the presence of a CodeCommentStatement in the
// collection, and retrieves its index if it is found.
CodeCommentStatement* testComment = new CodeCommentStatement(S"Test comment");
int itemIndex = -1;
if( collection->Contains( testComment ) )
itemIndex = collection->IndexOf( testComment );
[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 ファミリ
参照
CodeCommentStatementCollection クラス | CodeCommentStatementCollection メンバ | System.CodeDom 名前空間 | Contains