Foley .NET Utilities Class Library

LinkedList.Remove Method (Int32, Int32)

Removes the specified number of the elements starting at the position specified in the LinkedList.

[Visual Basic]
Overrides Overloads Public Function Remove( _
   ByVal index As Integer, _
   ByVal count As Integer _
) As Boolean Implements _
   IList2.Remove
[C#]
public override bool Remove(
   int index,
   int count
);

Parameters

index
Starting position for removing elements from the LinkedList.
count
The number of elements to remove from the LinkedList.

Return Value

true if the LinkedList is modified; otherwise false.

Implements

IList2.Remove

See Also

LinkedList Class | LinkedList Members | Foley.Utilities.Collections Namespace | LinkedList.Remove Overload List