Foley .NET Utilities Class Library

LinkedList.SubList Method 

Provides a view of the LinkedList with the specified number of the elements starting at the position specified.

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

Parameters

index
Starting position for the view of elements from the LinkedList.
count
The number of elements to include in the view of the LinkedList.

Return Value

A view of LinkedList.

Implements

IList2.SubList

See Also

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