src\libraries\System.Private.CoreLib\src\System\Double.cs (28)
125ulong bits = BitConverter.DoubleToUInt64Bits(m_value);
150ulong bits = BitConverter.DoubleToUInt64Bits(m_value);
277if (m_value < value)
282if (m_value > value)
287if (m_value == value)
292if (IsNaN(m_value))
334if (obj == m_value)
338return IsNaN(obj) && IsNaN(m_value);
346ulong bits = BitConverter.DoubleToUInt64Bits(m_value);
348if (IsNaNOrZero(m_value))
359return Number.FormatFloat(m_value, null, NumberFormatInfo.CurrentInfo);
364return Number.FormatFloat(m_value, format, NumberFormatInfo.CurrentInfo);
369return Number.FormatFloat(m_value, null, NumberFormatInfo.GetInstance(provider));
374return Number.FormatFloat(m_value, format, NumberFormatInfo.GetInstance(provider));
379return Number.TryFormatFloat(m_value, format, NumberFormatInfo.GetInstance(provider), destination, out charsWritten);
385return Number.TryFormatFloat(m_value, format, NumberFormatInfo.GetInstance(provider), utf8Destination, out bytesWritten);
456return Convert.ToBoolean(m_value);
466return Convert.ToSByte(m_value);
471return Convert.ToByte(m_value);
476return Convert.ToInt16(m_value);
481return Convert.ToUInt16(m_value);
486return Convert.ToInt32(m_value);
491return Convert.ToUInt32(m_value);
496return Convert.ToInt64(m_value);
501return Convert.ToUInt64(m_value);
506return Convert.ToSingle(m_value);
511return m_value;
516return Convert.ToDecimal(m_value);