/// <summary> /// Generates a random number between 0.0 and 1.0. /// </summary> /// <returns> /// A double-precision floating point number greater than /// or equal to 0.0, and less than 1.0. /// </returns> public static double RandomDouble() { return(soleInstance.RandomDoubleImpl()); }