Condividi tramite


CodeNamespaceCollection.Contains(CodeNamespace) Metodo

Definizione

Ottiene un valore che indica se l'insieme contiene l'oggetto CodeNamespace specificato.

public:
 bool Contains(System::CodeDom::CodeNamespace ^ value);
public bool Contains (System.CodeDom.CodeNamespace value);
member this.Contains : System.CodeDom.CodeNamespace -> bool
Public Function Contains (value As CodeNamespace) As Boolean

Parametri

value
CodeNamespace

Oggetto CodeNamespace da cercare nell'insieme.

Restituisce

true se l'oggetto CodeNamespace è incluso nella raccolta; in caso contrario, false.

Esempio

Nell'esempio seguente viene utilizzato il Contains metodo per trovare un CodeNamespace oggetto in un oggetto CodeNamespaceCollection.

// Tests for the presence of a CodeNamespace in the collection,
// and retrieves its index if it is found.
CodeNamespace^ testNamespace = gcnew CodeNamespace( "TestNamespace" );
int itemIndex = -1;
if ( collection->Contains( testNamespace ) )
   itemIndex = collection->IndexOf( testNamespace );
// Tests for the presence of a CodeNamespace in the collection,
// and retrieves its index if it is found.
CodeNamespace testNamespace = new CodeNamespace("TestNamespace");
int itemIndex = -1;
if( collection.Contains( testNamespace ) )
    itemIndex = collection.IndexOf( testNamespace );
' Tests for the presence of a CodeNamespace in the collection,
' and retrieves its index if it is found.
Dim testNamespace As New CodeNamespace("TestNamespace")
Dim itemIndex As Integer = -1
If collection.Contains(testNamespace) Then
    itemIndex = collection.IndexOf(testNamespace)
End If

Si applica a

Vedi anche