Foley .NET Utilities Class Library

IList2.RemoveAt Method 

When implemented by a class, removes the element at the specified position from the list.

[Visual Basic]
Function RemoveAt( _
   ByVal index As Integer _
) As Boolean
[C#]
bool RemoveAt(
   int index
);

Parameters

index
The index of the element to remove from the list.

Return Value

true if the list is modified; otherwise false.

Exceptions

Exception TypeCondition
System.NotSupportedException

The list is read-only.

-or-

The list has a fixed size.

See Also

IList2 Interface | IList2 Members | Foley.Utilities.Collections Namespace