Removes a at the specified index location.

Namespace: FiftyOne.Framework.Mobile.Configuration
Assembly: FiftyOne.Framework (in FiftyOne.Framework.dll) Version: 2.0.2.1 (2.0.2.1)

Syntax

C#
public void RemoveAt(
	int index
)
Visual Basic
Public Sub RemoveAt ( _
	index As Integer _
)
Visual C++
public:
void RemoveAt(
	int index
)

Parameters

index
Type: System..::..Int32
Index of the element to remove in the collection.

Exceptions

ExceptionCondition
System..::..ArgumentOutOfRangeExceptionThrown if index is less than zero or bigger than the number of indexes on the collections.

See Also