CodeCommentStatementCollection::Contains Method (CodeCommentStatement^)
.NET Framework (current version)
Gets a value that indicates whether the collection contains the specified CodeCommentStatement object.
Assembly: System (in System.dll)
Parameters
- value
-
Type:
System.CodeDom::CodeCommentStatement^
The CodeCommentStatement to search for in the collection.
Return Value
Type: System::Booleantrue if the collection contains the specified object; otherwise, false.
The following example uses the Contains method to search for the presence of a specific CodeCommentStatement object and gets the index value at which it was found.
// Tests for the presence of a CodeCommentStatement in the // collection, and retrieves its index if it is found. CodeCommentStatement^ testComment = gcnew CodeCommentStatement( "Test comment" ); int itemIndex = -1; if ( collection->Contains( testComment ) ) itemIndex = collection->IndexOf( testComment );
.NET Framework
Available since 1.1
Available since 1.1
Show: