Compartir a través de


CodeStatementCollection.Remove(CodeStatement) Método

Definición

Quita el objeto CodeStatement especificado de la colección.

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

CodeStatement que se va a quitar de la colección.

Excepciones

No se encuentra el objeto especificado en la colección.

Ejemplos

En el ejemplo siguiente se muestra cómo usar el Remove método para eliminar un CodeStatement objeto de .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)

Se aplica a