 | rangeRangeT Method (T, T) |
Get an
IListT of an arithmetic series.
Namespace:
WhetStone.Looping
Assembly:
WhetStone (in WhetStone.dll) Version: 1.0.4.0 (1.0.0.0)
Syntaxpublic static IList<T> Range<T>(
T start,
T max
)
Parameters
- start
- Type: T
The first element of the returned value. - max
- Type: T
The maximum value of the elements. Exclusive.
Type Parameters
- T
- The type of the elements.
Return Value
Type:
IListTA read-only
IListT with elements from
start to
max in steps of one.
Remarksuses fielding.
See Also