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