C# Return the Minimum Range of Values for Decimal, Float and Double Datatype

using System;

namespace Program
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("The Minimum Range of the Decimal Data Type is: {0} ", Decimal.MaxValue);
            Console.WriteLine("The Minimum Range of the Float Data Type is: {0} ", Single.MaxValue);
            Console.WriteLine("The Minimum Range of the Decimal Data Type is: {0} ", Double.MaxValue);
            Console.WriteLine("Exponent Form : The Minimum Range of Decimal Data Type is: {0:E}", Decimal.MaxValue);
            Console.WriteLine("Exponent Form : The Minimum Range of Float Data Type is: {0:E}", Single.MaxValue);
            Console.WriteLine("Exponent Form : The Minimum Range of Double Data Type is: {0:E}", Double.MaxValue);

            Console.ReadLine();
        }
    }
}

 

Output