RNG Operators and Type Conversions |
The RNG type exposes the following members.
Name | Description | |
---|---|---|
Equality | ||
(RNG to Byte) |
(byte)RNG.next()
| |
(RNG to SByte) |
(sbyte)RNG.next()
| |
(RNG to UInt16) |
(ushort)RNG.next()
| |
(RNG to Int16) |
(short)RNG.next()
| |
(RNG to UInt32) |
(uint)RNG.next()
| |
(RNG to Int32) |
(int)RNG.next()
| |
(RNG to Single) |
returns a next random value as float (System.Single)
| |
(RNG to Double) |
returns a next random value as double (System.Double)
| |
Inequality |