Beispiel #1
0
        public void Start()
        {
            var d = SafeRandom.GetDecimal(0, decimal.MaxValue);

            Console.WriteLine(d);
            d = SafeRandom.GetDecimal(0, decimal.MaxValue);
            Console.WriteLine(d);
            d = SafeRandom.GetDecimal(0, decimal.MaxValue);
            Console.WriteLine(d);
            d = SafeRandom.GetDecimal(decimal.MinValue, decimal.MaxValue);
            Console.WriteLine(d);
        }