Removes the IList item at the specified index.
Namespace: Telerik.WinControls.DataAssembly: Telerik.WinControls (in Telerik.WinControls.dll) Version: 2013.2.612.40 (2013.2.612.40)
Syntax
| C# |
|---|
void IList.RemoveAt(
int index
) |
| Visual Basic |
|---|
Private Sub RemoveAt ( _
index As Integer _
) Implements IList.RemoveAt |
Parameters
- index
- Type: System..::..Int32
The zero-based index of the item to remove.
Implements
IList..::..RemoveAt(Int32)
Exceptions
| Exception | Condition |
|---|
| System..::..ArgumentOutOfRangeException | index is not a valid index in the IList. |
| System..::..NotSupportedException | The IList is read-only.-or- The IList has a fixed size. |
See Also