AssemblyCollection.Remove(String) Method

Definition

Removes a AssemblyInfo object from the AssemblyCollection collection.

public:
 void Remove(System::String ^ key);
public void Remove (string key);
member this.Remove : string -> unit
Public Sub Remove (key As String)

Parameters

key
String

A string value specifying the assembly reference.

Examples

The following code example demonstrates how to use the Remove method. This code example is part of a larger example provided for the AssemblyCollection class.

// Remove an assembly.
configSection.Assemblies.Remove("MyAssembly, Version=1.0.0000.0, " +
  "Culture=neutral, Public KeyToken=b03f5f7f11d50a3a");
' Remove an assembly.
configSection.Assemblies.Remove("MyAssembly, Version=1.0.0000.0, " + _
  "Culture=neutral, Public KeyToken=b03f5f7f11d50a3a")

Remarks

If the assembly does not exist in the collection, the statement is ignored.

Applies to