double (C# Reference)
The double keyword signifies a simple type that stores 64-bit floating-point values. The following table shows the precision and approximate range for the double type.
Type | Approximate range | Precision | .NET Framework type |
|---|---|---|---|
double | ±5.0 × 10−324 to ±1.7 × 10308 | 15-16 digits |
You can mix numeric integral types and floating-point types in an expression. In this case, the integral types are converted to floating-point types. The evaluation of the expression is performed according to the following rules:
-
If one of the floating-point types is double, the expression evaluates to double, or bool in relational or Boolean expressions.
-
If there is no double type in the expression, it evaluates to float, or bool in relational or Boolean expressions.
A floating-point expression can contain the following sets of values:
-
Positive and negative zero.
-
Positive and negative infinity.
-
Not-a-Number value (NaN).
-
The finite set of nonzero values.
For more information about these values, see IEEE Standard for Binary Floating-Point Arithmetic, available on the IEEE Web site.
For more information, see the C# Language Specification. The language specification is the definitive source for C# syntax and usage.