AdvisableCollection<T>.RemoveAt Method |
Removes the IList<T> item at the specified index.
Namespace: PostSharp.Patterns.Collections
Assembly: PostSharp.Patterns.Common (in PostSharp.Patterns.Common.dll) Version: 2023.0.3.0 (2023.0.3.0)
C#
public void RemoveAt( int index )
Parameters
- index
- Type: System.Int32
The zero-based index of the item to remove.
Implements
IList<T>.RemoveAt(Int32)Exception | Condition |
---|---|
ArgumentOutOfRangeException | index is not a valid index in the IList<T>. |
NotSupportedException | The IList<T> is read-only. |