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

NextFloat() public method

Gets the next random number in the sequence and returns it as a single-precision floating-point number between 0.0f and 1.0f.
public NextFloat ( ) : float
return float
        public float NextFloat()
        {
            return (float)this.NextDouble();
        }