30 references to m_value
mscorlib (30)
system\double.cs (30)
120if (m_value < d) return -1; 121if (m_value > d) return 1; 122if (m_value == d) return 0; 125if (IsNaN(m_value)) 134if (m_value < value) return -1; 135if (m_value > value) return 1; 136if (m_value == value) return 0; 139if (IsNaN(m_value)) 151double temp = ((Double)obj).m_value; 153if (temp == m_value) { 156return IsNaN(temp) && IsNaN(m_value); 191if (obj == m_value) { 194return IsNaN(obj) && IsNaN(m_value); 202double d = m_value; 214return Number.FormatDouble(m_value, null, NumberFormatInfo.CurrentInfo); 220return Number.FormatDouble(m_value, format, NumberFormatInfo.CurrentInfo); 226return Number.FormatDouble(m_value, null, NumberFormatInfo.GetInstance(provider)); 232return Number.FormatDouble(m_value, format, NumberFormatInfo.GetInstance(provider)); 304return Convert.ToBoolean(m_value); 314return Convert.ToSByte(m_value); 319return Convert.ToByte(m_value); 324return Convert.ToInt16(m_value); 329return Convert.ToUInt16(m_value); 334return Convert.ToInt32(m_value); 339return Convert.ToUInt32(m_value); 344return Convert.ToInt64(m_value); 349return Convert.ToUInt64(m_value); 354return Convert.ToSingle(m_value); 359return m_value; 364return Convert.ToDecimal(m_value);