DbDataSource.RemoveAt Method | |
Removes the IList item at the specified index.
Namespace:
XSharp
Assembly:
XSharp.Data (in XSharp.Data.dll) Version: 2.21
Syntax VIRTUAL METHOD RemoveAt(
index AS LONG
) AS VOID
public virtual void RemoveAt(
int index
)
Request Example
View SourceParameters
- index
- Type: Long
The zero-based index of the item to remove.
Implements
RemoveAt(Long)Exceptions Exception | Condition |
---|
ArgumentOutOfRangeException | index is not a valid index in the IList. |
NotSupportedException | The IList is read-only.
-or-
The IList has a fixed size. |
See Also