26 references to m_value
mscorlib (26)
system\int16.cs (26)
55return m_value - ((Int16)value).m_value; 62return m_value - value; 69return m_value == ((Int16)obj).m_value; 75return m_value == obj; 80return ((int)((ushort)m_value) | (((int)m_value) << 16)); 87return Number.FormatInt32(m_value, null, NumberFormatInfo.CurrentInfo); 93return Number.FormatInt32(m_value, null, NumberFormatInfo.GetInstance(provider)); 110if (m_value<0 && format!=null && format.Length>0 && (format[0]=='X' || format[0]=='x')) { 111uint temp = (uint)(m_value & 0x0000FFFF); 114return Number.FormatInt32(m_value, format, info); 203return Convert.ToBoolean(m_value); 208return Convert.ToChar(m_value); 213return Convert.ToSByte(m_value); 218return Convert.ToByte(m_value); 223return m_value; 228return Convert.ToUInt16(m_value); 233return Convert.ToInt32(m_value); 238return Convert.ToUInt32(m_value); 243return Convert.ToInt64(m_value); 248return Convert.ToUInt64(m_value); 253return Convert.ToSingle(m_value); 258return Convert.ToDouble(m_value); 263return Convert.ToDecimal(m_value);