AssemblyCollection.RemoveAt(Int32) 方法

定义

AssemblyInfo 集合中删除 AssemblyCollection 对象。

public:
 void RemoveAt(int index);
public void RemoveAt (int index);
member this.RemoveAt : int -> unit
Public Sub RemoveAt (index As Integer)

参数

index
Int32

指定 AssemblyCollection 集合内 AssemblyInfo 对象的整数值。

示例

下面的代码示例演示如何使用 RemoveAt 方法。 此代码示例是为类提供的大型示例的 AssemblyCollection 一部分。

// Remove an assembly.
configSection.Assemblies.RemoveAt(configSection.Assemblies.Count - 1);
' Remove an assembly.
configSection.Assemblies.RemoveAt(configSection.Assemblies.Count - 1)

注解

如果集合中不存在程序集,则会引发范围外异常。

适用于