Epsilon, PositiveInfinity, NegativeInfinity, MaxValue, MinValue

image_pdfimage_print
   
  

using System;
using System.Collections.Generic;
using System.Text;

class Program {
    static void Main(string[] args) {
        Console.WriteLine("-> double.Epsilon: {0}", double.Epsilon);
        Console.WriteLine("-> double.PositiveInfinity: {0}", double.PositiveInfinity);
        Console.WriteLine("-> double.NegativeInfinity: {0}", double.NegativeInfinity);
        Console.WriteLine("-> double.MaxValue: {0}", double.MaxValue);
        Console.WriteLine("-> double.MinValue: {0}", double.MinValue);
    }
}

   
     


This entry was posted in Data Types. Bookmark the permalink.