Foley .NET Utilities Class Library

List2Base.RemoveAt Method 

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

[Visual Basic]
MustOverride Public Function RemoveAt( _
   ByVal index As Integer _
) As Boolean Implements _
   IList2.RemoveAt
[C#]
public abstract 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.

Implements

IList2.RemoveAt

Exceptions

Exception TypeCondition
System.NotSupportedException

The list is read-only.

-or-

The list has a fixed size.

See Also

List2Base Class | List2Base Members | Foley.Utilities.Collections Namespace