CodeAttributeDeclarationCollection::IndexOf Method (CodeAttributeDeclaration^)

 

Gets the index of the specified CodeAttributeDeclaration object in the collection, if it exists in the collection.

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

public:
int IndexOf(
	CodeAttributeDeclaration^ value
)

Parameters

value
Type: System.CodeDom::CodeAttributeDeclaration^

The CodeAttributeDeclaration object to locate in the collection.

Return Value

Type: System::Int32

The index in the collection of the specified object, if found; otherwise, -1.

The following example searches for the presence of a specific CodeAttributeDeclaration instance and uses the IndexOf method to get 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
Return to top
Show: