Removes the element at the specified index of the IStringStringList.

Namespace: CodeSmith.CustomProperties
Assembly: 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

ExceptionCondition
System..::..ArgumentOutOfRangeException

index is less than zero.

-or-

index is equal to or greater than Count.

System..::..NotSupportedException

The IStringStringList is read-only.

-or-

The IStringStringList has a fixed size.

See Also