Removes the element at the specified index of the
IStringList.
Namespace: CodeSmith.CustomPropertiesAssembly: CodeSmith.CustomProperties (in CodeSmith.CustomProperties.dll) Version: 6.0.0.0 (7.0.0.15127)
Syntax
| C# |
|---|
void RemoveAt( int index ) |
| Visual Basic |
|---|
Sub RemoveAt ( index As Integer ) |
Parameters
- index
- Type: System..::..Int32
The zero-based index of the element to remove.
Remarks
Please refer to RemoveAt(Int32) for details.
Exceptions
| Exception | Condition |
|---|---|
| System..::..ArgumentOutOfRangeException | index is less than zero. -or- index is equal to or greater than Count. |
| System..::..NotSupportedException | The IStringList is read-only. -or- The IStringList has a fixed size. |