SecureRandomiRandomNumber 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 int iRandomNumber(
int min,
int max
)
Public Function iRandomNumber (
min As Integer,
max As Integer
) As Integer
public:
int iRandomNumber(
int min,
int max
)
member iRandomNumber :
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 The "i" named functions are here to allow access to static members in COM applications. In .NET applications you can call static methods directly and don't need to instantiate this class.
See Also