24 references to m_value
mscorlib (24)
system\byte.cs (24)
64return m_value - (((Byte)value).m_value); 68return m_value - value; 76return m_value == ((Byte)obj).m_value; 82return m_value == obj; 87return m_value; 155return Number.FormatInt32(m_value, null, NumberFormatInfo.CurrentInfo); 162return Number.FormatInt32(m_value, format, NumberFormatInfo.CurrentInfo); 169return Number.FormatInt32(m_value, null, NumberFormatInfo.GetInstance(provider)); 176return Number.FormatInt32(m_value, format, NumberFormatInfo.GetInstance(provider)); 190return Convert.ToBoolean(m_value); 195return Convert.ToChar(m_value); 200return Convert.ToSByte(m_value); 205return m_value; 210return Convert.ToInt16(m_value); 215return Convert.ToUInt16(m_value); 220return Convert.ToInt32(m_value); 225return Convert.ToUInt32(m_value); 230return Convert.ToInt64(m_value); 235return Convert.ToUInt64(m_value); 240return Convert.ToSingle(m_value); 245return Convert.ToDouble(m_value); 250return Convert.ToDecimal(m_value);