ByChance.Core.Random2.NextDouble C# (CSharp) Method

NextDouble() public method

Gets the next random number in the sequence and returns it as a double-precision floating-point number between 0.0 and 1.0.
public NextDouble ( ) : double
return double
        public double NextDouble()
        {
            return 5.42101086242752217E-20 * this.NextUInt64();
        }