src\libraries\System.Private.CoreLib\src\System\Int32.cs (29)
76if (m_value < i) return -1;
77if (m_value > i) return 1;
88if (m_value < value) return -1;
89if (m_value > value) return 1;
99return m_value == ((int)obj).m_value;
105return m_value == obj;
111return m_value;
116return Number.Int32ToDecStr(m_value);
126return Number.FormatInt32(m_value, 0, null, provider);
131return Number.FormatInt32(m_value, ~0, format, provider);
136return Number.TryFormatInt32(m_value, ~0, format, provider, destination, out charsWritten);
142return Number.TryFormatInt32(m_value, ~0, format, provider, utf8Destination, out bytesWritten);
202return Convert.ToBoolean(m_value);
207return Convert.ToChar(m_value);
212return Convert.ToSByte(m_value);
217return Convert.ToByte(m_value);
222return Convert.ToInt16(m_value);
227return Convert.ToUInt16(m_value);
232return m_value;
237return Convert.ToUInt32(m_value);
242return Convert.ToInt64(m_value);
247return Convert.ToUInt64(m_value);
252return Convert.ToSingle(m_value);
257return Convert.ToDouble(m_value);
262return Convert.ToDecimal(m_value);
489int value = m_value;
507if (BinaryPrimitives.TryWriteInt32BigEndian(destination, m_value))
520if (BinaryPrimitives.TryWriteInt32LittleEndian(destination, m_value))