ByChance.Core.Random2.NextFloat C# (CSharp) Метод

NextFloat() публичный Метод

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
Результат float
        public float NextFloat()
        {
            return (float)this.NextDouble();
        }