Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

CodeParameterDeclarationExpressionCollection::Contains Method (CodeParameterDeclarationExpression^)

 

Gets a value indicating whether the collection contains the specified CodeParameterDeclarationExpression.

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

public:
bool Contains(
	CodeParameterDeclarationExpression^ value
)

Parameters

value
Type: System.CodeDom::CodeParameterDeclarationExpression^

A CodeParameterDeclarationExpression to search for in the collection.

Return Value

Type: System::Boolean

true if the collection contains the specified object; otherwise, false.

The following example uses the Contains method to search for the presence of a specific CodeParameterDeclarationExpression object and get the index value at which it was found.

// Tests for the presence of a CodeParameterDeclarationExpression 
// in the collection, and retrieves its index if it is found.
CodeParameterDeclarationExpression^ testParameter = gcnew CodeParameterDeclarationExpression( int::typeid,"testIntArgument" );
int itemIndex = -1;
if ( collection->Contains( testParameter ) )
   itemIndex = collection->IndexOf( testParameter );

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft