CodeStatementCollection.Remove(CodeStatement) Метод

Определение

Удаляет указанный объект CodeStatement из коллекции.

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)

Параметры

value
CodeStatement

Объект CodeStatement, который требуется удалить из коллекции.

Исключения

Указанный объект не найден в коллекции.

Примеры

В следующем примере показано, как использовать Remove метод для удаления CodeStatement объекта из 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)

Применяется к