Removes an item at the given index and returns it.

Namespace: MonoSoftware.Core.Collections
Assembly: MonoSoftware.Core (in MonoSoftware.Core.dll) Version: 1.0.40.669 (1.0.40.669)

Syntax

C#
public T RemoveAt(
	int index
)
Visual Basic
Public Function RemoveAt ( 
	index As Integer
) As T
Visual C++
public:
T RemoveAt(
	int index
)
F#
member RemoveAt : 
        index : int -> 'T 

Parameters

index
Type: System..::..Int32
The index of the item to remove

Return Value

Type: T
The item which has been removed from the

See Also