Click or drag to resize

rangeRIRangeT Method (T, T, T)

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

Parameters

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

Type Parameters

T
The type of the elements.

Return Value

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