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.

CodeTypeReferenceCollection::Contains Method (CodeTypeReference^)

 

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

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

public:
bool Contains(
	CodeTypeReference^ value
)

Parameters

value
Type: System.CodeDom::CodeTypeReference^

The CodeTypeReference to search for in the collection.

Return Value

Type: System::Boolean

true if the CodeTypeReference is contained in the collection; otherwise, false.

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

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