C# Double MaxValue
Description
Double MaxValue
represents the largest possible value
of a Double. This field is constant.
Syntax
Double.MaxValue
has the following syntax.
public const double MaxValue
Example
The following code example illustrates the use of MaxValue:
using System;// w ww. j ava 2s . co m
public class Example
{
public static void Main()
{
Console.WriteLine(Double.MaxValue);
}
}
The code above generates the following result.