Click or drag to resize

rangeRange Method (Int32, Int32, Int32)

Namespace:  WhetStone.Looping
Assembly:  WhetStone (in WhetStone.dll) Version: 1.0.4.0 (1.0.0.0)
Syntax
C#
public static IList<int> Range(
	int start,
	int max,
	int step
)

Parameters

start
Type: SystemInt32
The first element of the returned value.
max
Type: SystemInt32
The maximum value of the elements. Exclusive.
step
Type: SystemInt32
The difference between consecutive elements.

Return Value

Type: IListInt32
A read-only IListT with elements from start to max in steps of step.
See Also