25 references to m_value
mscorlib (25)
system\int32.cs (25)
57if (m_value < i) return -1; 58if (m_value > i) return 1; 67if (m_value < value) return -1; 68if (m_value > value) return 1; 76return m_value == ((Int32)obj).m_value; 82return m_value == obj; 87return m_value; 94return Number.FormatInt32(m_value, null, NumberFormatInfo.CurrentInfo); 101return Number.FormatInt32(m_value, format, NumberFormatInfo.CurrentInfo); 108return Number.FormatInt32(m_value, null, NumberFormatInfo.GetInstance(provider)); 115return Number.FormatInt32(m_value, format, NumberFormatInfo.GetInstance(provider)); 176return Convert.ToBoolean(m_value); 181return Convert.ToChar(m_value); 186return Convert.ToSByte(m_value); 191return Convert.ToByte(m_value); 196return Convert.ToInt16(m_value); 201return Convert.ToUInt16(m_value); 206return m_value; 211return Convert.ToUInt32(m_value); 216return Convert.ToInt64(m_value); 221return Convert.ToUInt64(m_value); 226return Convert.ToSingle(m_value); 231return Convert.ToDouble(m_value); 236return Convert.ToDecimal(m_value);