26 references to m_value
mscorlib (26)
system\sbyte.cs (26)
58return m_value - ((SByte)obj).m_value; 62return m_value - value; 70return m_value == ((SByte)obj).m_value; 76return m_value == obj; 81return ((int)m_value ^ (int)m_value << 8); 89return Number.FormatInt32(m_value, null, NumberFormatInfo.CurrentInfo); 95return Number.FormatInt32(m_value, null, NumberFormatInfo.GetInstance(provider)); 112if (m_value<0 && format!=null && format.Length>0 && (format[0]=='X' || format[0]=='x')) { 113uint temp = (uint)(m_value & 0x000000FF); 116return Number.FormatInt32(m_value, format, info); 211return Convert.ToBoolean(m_value); 216return Convert.ToChar(m_value); 221return m_value; 226return Convert.ToByte(m_value); 231return Convert.ToInt16(m_value); 236return Convert.ToUInt16(m_value); 241return m_value; 246return Convert.ToUInt32(m_value); 251return Convert.ToInt64(m_value); 256return Convert.ToUInt64(m_value); 261return Convert.ToSingle(m_value); 266return Convert.ToDouble(m_value); 271return Convert.ToDecimal(m_value);