src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (28)
125uint bits = BitConverter.SingleToUInt32Bits(m_value);
150uint bits = BitConverter.SingleToUInt32Bits(m_value);
276if (m_value < value)
281if (m_value > value)
286if (m_value == value)
291if (IsNaN(m_value))
331if (obj == m_value)
335return IsNaN(obj) && IsNaN(m_value);
341uint bits = BitConverter.SingleToUInt32Bits(m_value);
343if (IsNaNOrZero(m_value))
354return Number.FormatFloat(m_value, null, NumberFormatInfo.CurrentInfo);
359return Number.FormatFloat(m_value, null, NumberFormatInfo.GetInstance(provider));
364return Number.FormatFloat(m_value, format, NumberFormatInfo.CurrentInfo);
369return Number.FormatFloat(m_value, format, NumberFormatInfo.GetInstance(provider));
374return Number.TryFormatFloat(m_value, format, NumberFormatInfo.GetInstance(provider), destination, out charsWritten);
380return Number.TryFormatFloat(m_value, format, NumberFormatInfo.GetInstance(provider), utf8Destination, out bytesWritten);
445return Convert.ToBoolean(m_value);
455return Convert.ToSByte(m_value);
460return Convert.ToByte(m_value);
465return Convert.ToInt16(m_value);
470return Convert.ToUInt16(m_value);
475return Convert.ToInt32(m_value);
480return Convert.ToUInt32(m_value);
485return Convert.ToInt64(m_value);
490return Convert.ToUInt64(m_value);
495return m_value;
500return Convert.ToDouble(m_value);
505return Convert.ToDecimal(m_value);