RandomByteBetween Method
Generates a cryptographically strong 8-bit random integer between specified values.
Namespace: Gemstone.Security.CryptographyAssembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.172 -- Release Build+241430fabc9f8d815f226ef82f939af6835b2b48
public static byte ByteBetween(
byte startNumber,
byte stopNumber
)
Public Shared Function ByteBetween (
startNumber As Byte,
stopNumber As Byte
) As Byte
Gemstone.Security.Cryptography.Random.ByteBetween = function(startNumber, stopNumber);
- startNumber Byte
- A Byte that is the low end of our range.
- stopNumber Byte
- A Byte that is the high end of our range.
ByteA
Byte that is generated between the
startNumber and the
stopNumber.