AssemblyCollection.RemoveAt(Int32) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
从 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)
注解
如果集合中不存在程序集,则会引发范围外异常。