CodeCommentStatementCollection.Remove(CodeCommentStatement) Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Remove o objeto especificado CodeCommentStatement da coleção.
public:
void Remove(System::CodeDom::CodeCommentStatement ^ value);
public void Remove(System.CodeDom.CodeCommentStatement value);
member this.Remove : System.CodeDom.CodeCommentStatement -> unit
Public Sub Remove (value As CodeCommentStatement)
Parâmetros
- value
- CodeCommentStatement
O CodeCommentStatement objeto a ser removido da coleção.
Exceções
O objeto especificado não é encontrado na coleção.
Exemplos
O exemplo a seguir demonstra como usar o Remove método para excluir um CodeCommentStatement objeto do CodeCommentStatementCollection.
// Removes the specified CodeCommentStatement from the collection.
CodeCommentStatement comment = new CodeCommentStatement("Test comment");
collection.Remove( comment );
' Removes the specified CodeCommentStatement from the collection.
Dim comment As New CodeCommentStatement("Test comment")
collection.Remove(comment)