26 references to m_value
mscorlib (26)
system\int64.cs (26)
56if (m_value < i) return -1; 57if (m_value > i) return 1; 66if (m_value < value) return -1; 67if (m_value > value) return 1; 75return m_value == ((Int64)obj).m_value; 81return m_value == obj; 86return (unchecked((int)((long)m_value)) ^ (int)(m_value >> 32)); 92return Number.FormatInt64(m_value, null, NumberFormatInfo.CurrentInfo); 98return Number.FormatInt64(m_value, null, NumberFormatInfo.GetInstance(provider)); 104return Number.FormatInt64(m_value, format, NumberFormatInfo.CurrentInfo); 110return Number.FormatInt64(m_value, format, NumberFormatInfo.GetInstance(provider)); 155return Convert.ToBoolean(m_value); 160return Convert.ToChar(m_value); 165return Convert.ToSByte(m_value); 170return Convert.ToByte(m_value); 175return Convert.ToInt16(m_value); 180return Convert.ToUInt16(m_value); 185return Convert.ToInt32(m_value); 190return Convert.ToUInt32(m_value); 195return m_value; 200return Convert.ToUInt64(m_value); 205return Convert.ToSingle(m_value); 210return Convert.ToDouble(m_value); 215return Convert.ToDecimal(m_value);