| 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.12.2
Syntax IList<T> SubList(
int fromIndex,
int toIndex
)
Function SubList (
fromIndex As Integer,
toIndex As Integer
) As IList(Of T)
IList<T>^ SubList(
int fromIndex,
int toIndex
)
abstract SubList :
fromIndex : int *
toIndex : int -> IList<'T>
Parameters
- fromIndex
- Type: SystemInt32
low endpoint (inclusive) of the subList - toIndex
- Type: SystemInt32
high endpoint (exclusive) of the subList
Return Value
Type:
IListTa view of the specified range within this list
See Also