24 references to m_value
mscorlib (24)
system\uint16.cs (24)
53return ((int)m_value - (int)(((UInt16)value).m_value)); 59return ((int)m_value - (int)value); 66return m_value == ((UInt16)obj).m_value; 72return m_value == obj; 77return (int)m_value; 84return Number.FormatUInt32(m_value, null, NumberFormatInfo.CurrentInfo); 90return Number.FormatUInt32(m_value, null, NumberFormatInfo.GetInstance(provider)); 97return Number.FormatUInt32(m_value, format, NumberFormatInfo.CurrentInfo); 103return Number.FormatUInt32(m_value, format, NumberFormatInfo.GetInstance(provider)); 178return Convert.ToBoolean(m_value); 183return Convert.ToChar(m_value); 188return Convert.ToSByte(m_value); 193return Convert.ToByte(m_value); 198return Convert.ToInt16(m_value); 203return m_value; 208return Convert.ToInt32(m_value); 213return Convert.ToUInt32(m_value); 218return Convert.ToInt64(m_value); 223return Convert.ToUInt64(m_value); 228return Convert.ToSingle(m_value); 233return Convert.ToDouble(m_value); 238return Convert.ToDecimal(m_value);