Click or drag to resize

IHListTSubList Method

Returns a view of the portion of this list between the specified fromIndex, inclusive, and toIndex, exclusive. (If fromIndex and toIndex are equal, the returned list is empty.)

Namespace:  Hazelcast.Core
Assembly:  Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.9.2
Syntax
IList<T> SubList(
	int fromIndex,
	int toIndex
)

Parameters

fromIndex
Type: SystemInt32
low endpoint (inclusive) of the subList
toIndex
Type: SystemInt32
high endpoint (exclusive) of the subList

Return Value

Type: IListT
a view of the specified range within this list
See Also