Method | Description | |
---|---|---|
Next ( System.Numerics.BigInteger maxValue ) : System.Numerics.BigInteger | ||
Next ( int minValue, int maxValue ) : int |
Returns a random number within a specified range.
|
|
SafeRandom ( ) : System | ||
SafeRandom ( int seed ) : System |
public Next ( System.Numerics.BigInteger maxValue ) : System.Numerics.BigInteger | ||
maxValue | System.Numerics.BigInteger | |
return | System.Numerics.BigInteger |
public Next ( int minValue, int maxValue ) : int | ||
minValue | int | The inclusive lower bound of the random number returned. |
maxValue | int | /// The exclusive upper bound of the random number returned. maxValue must be /// greater than or equal to minValue. /// |
return | int |