| c# Programming Glossary: mantissaWhat represents a double in sql server? http://stackoverflow.com/questions/1209181/what-represents-a-double-in-sql-server  as the 64 bit double type in .NET slight difference in mantissa IIRC but it's a close enough match most uses. To make things.. 
 How To Represent 0.1 In Floating Point Arithmetic And Decimal http://stackoverflow.com/questions/3448777/how-to-represent-0-1-in-floating-point-arithmetic-and-decimal  2 1 123 127 bias 4 so the multiplier is 2 4 or 1 16 . The mantissa is chunky. It consists of 1 the implicit base plus for all those.. it's the implicit base 1 plus no other additives all the mantissa bits are zero . The sign is again positive. The exponent is.. 
 extracting mantissa and exponent from double in c# http://stackoverflow.com/questions/389993/extracting-mantissa-and-exponent-from-double-in-c-sharp  mantissa and exponent from double in c#  Is there any straightforward.. double in c#  Is there any straightforward way to get the mantissa and exponent from a double in c# or .NET in general I found.. of the code is Translate the double into sign exponent and mantissa. long bits BitConverter.DoubleToInt64Bits d Note that the shift.. 
 Parse decimal and filter extra 0 on the right? http://stackoverflow.com/questions/4298719/parse-decimal-and-filter-extra-0-on-the-right   unchecked  int bits decimal.GetBits input BigInteger mantissa  new BigInteger uint bits 0  new BigInteger uint bits 1 32 .. BigInteger remainder  BigInteger divided BigInteger.DivRem mantissa Ten out remainder  if remainder BigInteger.Zero   break   exponent..  if remainder BigInteger.Zero   break   exponent  mantissa divided   Okay now put it all back together again... bits 3.. 
 |