Поделиться через


CodeTypeDeclarationCollection.Remove(CodeTypeDeclaration) Метод

Определение

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

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

Параметры

value
CodeTypeDeclaration

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

Исключения

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

Примеры

В следующем примере показано, как использовать Remove метод для удаления CodeTypeDeclaration объекта из CodeTypeDeclarationCollection.

// Removes the specified CodeTypeDeclaration from the collection.
CodeTypeDeclaration^ declaration = gcnew CodeTypeDeclaration( "TestType" );
collection->Remove( declaration );
// Removes the specified CodeTypeDeclaration from the collection.
CodeTypeDeclaration declaration = new CodeTypeDeclaration("TestType");
collection.Remove( declaration );
' Removes the specified CodeTypeDeclaration from the collection.
Dim declaration As New CodeTypeDeclaration("TestType")
collection.Remove(declaration)

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