Udostępnij za pośrednictwem


CodeStatementCollection.Remove(CodeStatement) Metoda

Definicja

Usuwa określony CodeStatement obiekt z kolekcji.

public:
 void Remove(System::CodeDom::CodeStatement ^ value);
public void Remove (System.CodeDom.CodeStatement value);
member this.Remove : System.CodeDom.CodeStatement -> unit
Public Sub Remove (value As CodeStatement)

Parametry

value
CodeStatement

Element CodeStatement do usunięcia z kolekcji.

Wyjątki

Określony obiekt nie został znaleziony w kolekcji.

Przykłady

W poniższym przykładzie pokazano, jak za pomocą Remove metody usunąć CodeStatement obiekt z obiektu CodeStatementCollection.

// Removes the specified CodeStatement from the collection.
collection->Remove( testStatement );
// Removes the specified CodeStatement from the collection.
collection.Remove( testStatement );
' Removes the specified CodeStatement from the collection.
collection.Remove(testStatement)

Dotyczy