RandomExtensionsNextInt64 Method |
Returns a nonnegative random number less than
MaxValue.
Namespace: Altaxo.Calc.RandomAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static long NextInt64(
this Random rnd
)
Parameters
- rnd Random
- The random number generator.
Return Value
Int64
A 64-bit signed integer greater than or equal to 0, and less than
MaxValue; that is,
the range of return values includes 0 but not
MaxValue.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
Random. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
Remarks
This extension is thread-safe if and only if called on an random number
generator provided by Math.NET Numerics or derived from the RandomSource class.
See Also