CodeAttributeDeclarationCollection::Contains Method (CodeAttributeDeclaration^)
.NET Framework (current version)
Gets or sets a value that indicates whether the collection contains the specified CodeAttributeDeclaration object.
Assembly: System (in System.dll)
Parameters
- value
-
Type:
System.CodeDom::CodeAttributeDeclaration^
The CodeAttributeDeclaration object to locate.
Return Value
Type: System::Booleantrue if the collection contains the specified object; otherwise, false.
The following example uses the Contains method to search for the presence of a specific CodeAttributeDeclaration instance and gets the index value at which it was found.
// Tests for the presence of a CodeAttributeDeclaration in // the collection, and retrieves its index if it is found. array<CodeAttributeArgument^>^temp3 = {gcnew CodeAttributeArgument( gcnew CodePrimitiveExpression( "Test Description" ) )}; CodeAttributeDeclaration^ testdeclaration = gcnew CodeAttributeDeclaration( "DescriptionAttribute",temp3 ); int itemIndex = -1; if ( collection->Contains( testdeclaration ) ) itemIndex = collection->IndexOf( testdeclaration );
.NET Framework
Available since 1.1
Available since 1.1
Show: