CodeTypeDeclarationCollection.IndexOf(CodeTypeDeclaration) Método
Definição
Obtém o índice do objeto CodeTypeDeclaration na CodeTypeDeclarationCollection, se ele existe na coleção.Gets the index of the specified CodeTypeDeclaration object in the CodeTypeDeclarationCollection, if it exists in the collection.
public:
int IndexOf(System::CodeDom::CodeTypeDeclaration ^ value);
public int IndexOf (System.CodeDom.CodeTypeDeclaration value);
member this.IndexOf : System.CodeDom.CodeTypeDeclaration -> int
Public Function IndexOf (value As CodeTypeDeclaration) As Integer
Parâmetros
- value
- CodeTypeDeclaration
O CodeTypeDeclaration a ser localizado na coleção.The CodeTypeDeclaration to locate in the collection.
Retornos
O índice do objeto especificado, se encontrado, na coleção; caso contrário, -1.The index of the specified object, if it is found, in the collection; otherwise, -1.
Exemplos
O exemplo a seguir recupera CodeTypeDeclaration entradas de um CodeTypeDeclarationCollection objeto e exibe seus nomes e índices retornados pelo IndexOf método.The following example retrieves CodeTypeDeclaration entries from a CodeTypeDeclarationCollection object and displays their names and indexes returned by the IndexOf method.
// Tests for the presence of a CodeTypeDeclaration in the
// collection, and retrieves its index if it is found.
CodeTypeDeclaration^ testDeclaration = gcnew CodeTypeDeclaration( "TestType" );
int itemIndex = -1;
if ( collection->Contains( testDeclaration ) )
itemIndex = collection->IndexOf( testDeclaration );
// Tests for the presence of a CodeTypeDeclaration in the
// collection, and retrieves its index if it is found.
CodeTypeDeclaration testDeclaration = new CodeTypeDeclaration("TestType");
int itemIndex = -1;
if( collection.Contains( testDeclaration ) )
itemIndex = collection.IndexOf( testDeclaration );
' Tests for the presence of a CodeTypeDeclaration in the
' collection, and retrieves its index if it is found.
Dim testDeclaration As New CodeTypeDeclaration("TestType")
Dim itemIndex As Integer = -1
If collection.Contains(testDeclaration) Then
itemIndex = collection.IndexOf(testDeclaration)
End If