30 references to m_value
mscorlib (30)
system\single.cs (30)
91if (m_value < f) return -1; 92if (m_value > f) return 1; 93if (m_value == f) return 0; 96if (IsNaN(m_value)) 106if (m_value < value) return -1; 107if (m_value > value) return 1; 108if (m_value == value) return 0; 111if (IsNaN(m_value)) 151float temp = ((Single)obj).m_value; 152if (temp == m_value) { 156return IsNaN(temp) && IsNaN(m_value); 161if (obj == m_value) { 165return IsNaN(obj) && IsNaN(m_value); 170float f = m_value; 182return Number.FormatSingle(m_value, null, NumberFormatInfo.CurrentInfo); 188return Number.FormatSingle(m_value, null, NumberFormatInfo.GetInstance(provider)); 194return Number.FormatSingle(m_value, format, NumberFormatInfo.CurrentInfo); 200return Number.FormatSingle(m_value, format, NumberFormatInfo.GetInstance(provider)); 274return Convert.ToBoolean(m_value); 284return Convert.ToSByte(m_value); 289return Convert.ToByte(m_value); 294return Convert.ToInt16(m_value); 299return Convert.ToUInt16(m_value); 304return Convert.ToInt32(m_value); 309return Convert.ToUInt32(m_value); 314return Convert.ToInt64(m_value); 319return Convert.ToUInt64(m_value); 324return m_value; 329return Convert.ToDouble(m_value); 334return Convert.ToDecimal(m_value);