次の方法で共有


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

AssemblyInfo コレクション内の特定の AssemblyCollection オブジェクトを指定する整数値。

次のコード例は、RemoveAt メソッドの使用方法を示します。 このコード例は、AssemblyCollection クラスのために提供されている大規模な例の一部です。

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

注釈

アセンブリがコレクションに存在しない場合は、範囲外の例外がスローされます。

適用対象