FastRandom(UInt64, UInt64) Constructor
Initializes a new instance of the
ThreadSafeRandom class using the specified seed values.
Namespace: KGySoft.CoreLibrariesAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 10.0.0
[CLSCompliantAttribute(false)]
public FastRandom(
ulong seedA,
ulong seedB
)
<CLSCompliantAttribute(false)>
Public Sub New (
seedA As ULong,
seedB As ULong
)
public:
[CLSCompliantAttribute(false)]
FastRandom(
unsigned long long seedA,
unsigned long long seedB
)
[<CLSCompliantAttribute(false)>]
new :
seedA : uint64 *
seedB : uint64 -> FastRandom
Parameters
- seedA UInt64
- The first half of the seed that is used to calculate a starting value for the pseudo-random number sequence.
- seedB UInt64
- The second half of the seed that is used to calculate a starting value for the pseudo-random number sequence.