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);
451return Convert.ToBoolean(m_value);
461return Convert.ToSByte(m_value);
466return Convert.ToByte(m_value);
471return Convert.ToInt16(m_value);
476return Convert.ToUInt16(m_value);
481return Convert.ToInt32(m_value);
486return Convert.ToUInt32(m_value);
491return Convert.ToInt64(m_value);
496return Convert.ToUInt64(m_value);
501return m_value;
506return Convert.ToDouble(m_value);
511return Convert.ToDecimal(m_value);