Click or drag to resize

GlobalRandomGeneratorInt Method (Int32, Int32)

Get a random Int32.

Namespace:  WhetStone.Random
Assembly:  WhetStone (in WhetStone.dll) Version: 1.0.4.0 (1.0.0.0)
Syntax
C#
public override int Int(
	int min,
	int max
)

Parameters

min
Type: SystemInt32
The minimum value that can be returned. inclusive.
max
Type: SystemInt32
The maximum value that can be returned. exclusive.

Return Value

Type: Int32
A randomly generated Int32 between min and max.
See Also