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^)
.NET Framework (current version)
Gets a value indicating whether the collection contains the specified CodeTypeReference.
Assembly: System (in System.dll)
Parameters
- value
-
Type:
System.CodeDom::CodeTypeReference^
The CodeTypeReference to search for in the collection.
Return Value
Type: System::Booleantrue 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
Available since 1.1
Show: