简体   繁体   中英

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-precision 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#)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM