Aracılığıyla paylaş


CodeExpressionCollection.Contains(CodeExpression) Yöntem

Tanım

Koleksiyonun belirtilen CodeExpression nesneyi içerip içermediğini gösteren bir değer alır.

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

Parametreler

value
CodeExpression

CodeExpression Koleksiyonda bulunacak nesne.

Döndürülenler

true koleksiyon belirtilen nesneyi içeriyorsa; aksi takdirde , false.

Örnekler

Aşağıdaki örnek, belirli CodeExpression bir nesnenin varlığını aramak için yöntemini kullanır Contains ve bulunduğu dizin değerini alır.

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

Şunlara uygulanır

Ayrıca bkz.