pmMDA.NET

LinkedCollection.GetRange Method 

[This is preliminary documentation and subject to change.]

Gets a range of items within this collection.

public ArrayList GetRange(
   object first,
   int count
);

Parameters

first
The first object of the range.
count
The count of items of the range.

Return Value

An ArrayList which contains the range of items defined by the first item and the count.

Exceptions

Exception Type Condition
ArgumentNullException first is a null reference.
ArgumentOutOfRangeException The count is less than 0.
ArgumentException The first item could not be found in this collection.
- or -
The first item and the count do not denote a valid range of items in this linked collection.

See Also

LinkedCollection Class | PmMda.Net.Dog.Paging Namespace