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.
CodeTypeMemberCollection::Contains Method (CodeTypeMember^)
.NET Framework (current version)
Gets a value indicating whether the collection contains the specified CodeTypeMember.
Assembly: System (in System.dll)
Parameters
- value
-
Type:
System.CodeDom::CodeTypeMember^
The CodeTypeMember to search for in the collection.
Return Value
Type: System::Booleantrue if the collection contains the specified object; otherwise, false.
The following code example uses the Contains method to search for the presence of a specific CodeTypeMember object and retrieve the index value at which it was found.
// Tests for the presence of a CodeTypeMember in the collection, // and retrieves its index if it is found. CodeTypeMember^ testMember = gcnew CodeMemberField( "System.String","TestStringField" ); int itemIndex = -1; if ( collection->Contains( testMember ) ) itemIndex = collection->IndexOf( testMember );
.NET Framework
Available since 1.1
Available since 1.1
Show: