Partilhar via


CodeStatementCollection.Remove(CodeStatement) Método

Definição

Remove o objeto CodeStatement especificado da coleção.

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)

Parâmetros

value
CodeStatement

O CodeStatement a ser removido da coleção.

Exceções

O objeto especificado não foi localizado na coleção.

Exemplos

O exemplo a seguir demonstra como usar o Remove método para excluir um CodeStatement objeto de um 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)

Aplica-se a