src\runtime\src\libraries\System.Private.CoreLib\src\System\Int64.cs (31)
73if (m_value < i) return -1;
74if (m_value > i) return 1;
85if (m_value < value) return -1;
86if (m_value > value) return 1;
96return m_value == ((long)obj).m_value;
102return m_value == obj;
108return unchecked((int)((long)m_value)) ^ (int)(m_value >> 32);
113return Number.Int64ToDecStr(m_value);
118return Number.FormatInt64(m_value, null, provider);
123return Number.FormatInt64(m_value, format, null);
128return Number.FormatInt64(m_value, format, provider);
133return Number.TryFormatInt64(m_value, format, provider, destination, out charsWritten);
139return Number.TryFormatInt64(m_value, format, provider, utf8Destination, out bytesWritten);
193return Convert.ToBoolean(m_value);
198return Convert.ToChar(m_value);
203return Convert.ToSByte(m_value);
208return Convert.ToByte(m_value);
213return Convert.ToInt16(m_value);
218return Convert.ToUInt16(m_value);
223return Convert.ToInt32(m_value);
228return Convert.ToUInt32(m_value);
233return m_value;
238return Convert.ToUInt64(m_value);
243return Convert.ToSingle(m_value);
248return Convert.ToDouble(m_value);
253return Convert.ToDecimal(m_value);
475long value = m_value;
493if (BinaryPrimitives.TryWriteInt64BigEndian(destination, m_value))
506if (BinaryPrimitives.TryWriteInt64LittleEndian(destination, m_value))