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 = new CodeTypeDeclaration("TestType");
collection.Remove( declaration );
' Removes the specified CodeTypeDeclaration from the collection.
Dim declaration As New CodeTypeDeclaration("TestType")
collection.Remove(declaration)

適用於