src\libraries\System.Private.CoreLib\src\System\Single.cs (28)
125uint bits = BitConverter.SingleToUInt32Bits(m_value);
150uint bits = BitConverter.SingleToUInt32Bits(m_value);
274if (m_value < value)
279if (m_value > value)
284if (m_value == value)
289if (IsNaN(m_value))
329if (obj == m_value)
333return IsNaN(obj) && IsNaN(m_value);
339uint bits = BitConverter.SingleToUInt32Bits(m_value);
341if (IsNaNOrZero(m_value))
352return Number.FormatFloat(m_value, null, NumberFormatInfo.CurrentInfo);
357return Number.FormatFloat(m_value, null, NumberFormatInfo.GetInstance(provider));
362return Number.FormatFloat(m_value, format, NumberFormatInfo.CurrentInfo);
367return Number.FormatFloat(m_value, format, NumberFormatInfo.GetInstance(provider));
372return Number.TryFormatFloat(m_value, format, NumberFormatInfo.GetInstance(provider), destination, out charsWritten);
378return Number.TryFormatFloat(m_value, format, NumberFormatInfo.GetInstance(provider), utf8Destination, out bytesWritten);
449return Convert.ToBoolean(m_value);
459return Convert.ToSByte(m_value);
464return Convert.ToByte(m_value);
469return Convert.ToInt16(m_value);
474return Convert.ToUInt16(m_value);
479return Convert.ToInt32(m_value);
484return Convert.ToUInt32(m_value);
489return Convert.ToInt64(m_value);
494return Convert.ToUInt64(m_value);
499return m_value;
504return Convert.ToDouble(m_value);
509return Convert.ToDecimal(m_value);