Aqueduct.Extensions.Numeric.Random C# (CSharp) Method

Random() public static method

Generates a random double
public static Random ( ) : double
return double
        public static double Random()
        {
            return new Random().NextDouble();
        }
    }

Same methods

Numeric::Random ( int high ) : int
Numeric::Random ( int low, int high ) : int