SecureRandomRandomNumber Method |
Generates random integer within specified bounds.
Namespace:
TreeksLicensingLibrary2
Assembly:
TreeksLicensingLibrary2 (in TreeksLicensingLibrary2.dll) Version: 2.1.8318.42066 (2.1.0.0)
Syntax public static int RandomNumber(
int min,
int max
)
Public Shared Function RandomNumber (
min As Integer,
max As Integer
) As Integer
public:
static int RandomNumber(
int min,
int max
)
static member RandomNumber :
min : int *
max : int -> int
Parameters
- min
- Type: SystemInt32
Minimum random value - max
- Type: SystemInt32
Maximum random value
Return Value
Type:
Int32Random integer within specified bounds
Remarks See Also