CodeNamespaceCollection::Contains Method (CodeNamespace^)

 

Gets a value that indicates whether the collection contains the specified CodeNamespace object.

Namespace:   System.CodeDom
Assembly:  System (in System.dll)

public:
bool Contains(
	CodeNamespace^ value
)

Parameters

value
Type: System.CodeDom::CodeNamespace^

The CodeNamespace to search for in the collection.

Return Value

Type: System::Boolean

true 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
Return to top
Show: