Udostępnij przez


CodeParameterDeclarationExpressionCollection.Contains Metoda

Definicja

Pobiera wartość wskazującą, czy kolekcja zawiera określony CodeParameterDeclarationExpressionelement .

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

Parametry

Zwraca

true jeśli kolekcja zawiera określony obiekt; w przeciwnym razie , false.

Przykłady

W poniższym przykładzie użyto Contains metody , aby wyszukać obecność określonego CodeParameterDeclarationExpression obiektu i pobrać wartość indeksu, w której została znaleziona.

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

Dotyczy

Zobacz też