26 references to m_value
mscorlib (26)
system\uint64.cs (26)
55if (m_value < i) return -1; 56if (m_value > i) return 1; 65if (m_value < value) return -1; 66if (m_value > value) return 1; 74return m_value == ((UInt64)obj).m_value; 80return m_value == obj; 85return ((int)m_value) ^ (int)(m_value >> 32); 91return Number.FormatUInt64(m_value, null, NumberFormatInfo.CurrentInfo); 97return Number.FormatUInt64(m_value, null, NumberFormatInfo.GetInstance(provider)); 103return Number.FormatUInt64(m_value, format, NumberFormatInfo.CurrentInfo); 109return Number.FormatUInt64(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 Convert.ToInt64(m_value); 200return m_value; 205return Convert.ToSingle(m_value); 210return Convert.ToDouble(m_value); 215return Convert.ToDecimal(m_value);