What type in C# stores 64-bit double-precision floating point values?
A previous question I asked indicated that this was 64 bit (8 byte) double-precisi开发者_如何学Con floating point type.
What is the equivalent of this in C#
It's called double
which is an alias for the System.Double
type:
The double keyword denotes a simple type that stores 64-bit floating-point values.
—MSDN: double (C#)
精彩评论