IHListTSubList Method Hazelcast .Net Client Class Library
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.7.1
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

Reference