31 references to m_value
System.Private.CoreLib (31)
src\libraries\System.Private.CoreLib\src\System\Int32.cs (31)
70if (m_value < i) return -1; 71if (m_value > i) return 1; 82if (m_value < value) return -1; 83if (m_value > value) return 1; 93return m_value == ((int)obj).m_value; 99return m_value == obj; 105return m_value; 110return Number.Int32ToDecStr(m_value); 120return Number.FormatInt32(m_value, 0, null, provider); 125return Number.FormatInt32(m_value, ~0, format, provider); 130return Number.TryFormatInt32(m_value, ~0, format, provider, destination, out charsWritten); 136return Number.TryFormatInt32(m_value, ~0, format, provider, utf8Destination, out bytesWritten); 196return Convert.ToBoolean(m_value); 201return Convert.ToChar(m_value); 206return Convert.ToSByte(m_value); 211return Convert.ToByte(m_value); 216return Convert.ToInt16(m_value); 221return Convert.ToUInt16(m_value); 226return m_value; 231return Convert.ToUInt32(m_value); 236return Convert.ToInt64(m_value); 241return Convert.ToUInt64(m_value); 246return Convert.ToSingle(m_value); 251return Convert.ToDouble(m_value); 256return Convert.ToDecimal(m_value); 483int value = m_value; 503int value = BitConverter.IsLittleEndian ? BinaryPrimitives.ReverseEndianness(m_value) : m_value; 521int value = BitConverter.IsLittleEndian ? m_value : BinaryPrimitives.ReverseEndianness(m_value);