BitConverter: ToDouble, ToSingle, Int64BitsToDouble, Int32BitsToDouble #2977
Labels
area-System.Runtime
Pri3
Indicates issues/PRs that are low priority
untriaged
New issue has not been triaged by the area owner
Link to article:
https://docs.microsoft.com/en-us/dotnet/api/system.bitconverter.todouble?view=netstandard-2.0
Problem:
Mention that it might not be possible to use these methods to produce what are so-called _signaling NaN_s in x86, x64, and certain other instruction set architectures. A signaling NaN is an NaN with the most significant bit of the mantissa area clear (as opposed to a quiet NaN where that bit is set). An example of a signaling NaN is as follows (with little-endian byte ordering):
At least in x86, using ToDouble and converting the resulting
double
back will convert the signaling NaN to a quiet NaN as follows:This can be an issue if the application works with binary serialization formats that store
double
orfloat
values in the form of the bits that make them up, because converting those bits todouble
orfloat
with these BitConverter methods may make round-tripping thatdouble
orfloat
not always possible.The text was updated successfully, but these errors were encountered: