25 references to m_value
mscorlib (25)
system\uint32.cs (25)
58if (m_value < i) return -1; 59if (m_value > i) return 1; 68if (m_value < value) return -1; 69if (m_value > value) return 1; 77return m_value == ((UInt32)obj).m_value; 83return m_value == obj; 88return ((int) m_value); 95return Number.FormatUInt32(m_value, null, NumberFormatInfo.CurrentInfo); 101return Number.FormatUInt32(m_value, null, NumberFormatInfo.GetInstance(provider)); 107return Number.FormatUInt32(m_value, format, NumberFormatInfo.CurrentInfo); 113return Number.FormatUInt32(m_value, format, NumberFormatInfo.GetInstance(provider)); 160return Convert.ToBoolean(m_value); 165return Convert.ToChar(m_value); 170return Convert.ToSByte(m_value); 175return Convert.ToByte(m_value); 180return Convert.ToInt16(m_value); 185return Convert.ToUInt16(m_value); 190return Convert.ToInt32(m_value); 195return m_value; 200return Convert.ToInt64(m_value); 205return Convert.ToUInt64(m_value); 210return Convert.ToSingle(m_value); 215return Convert.ToDouble(m_value); 220return Convert.ToDecimal(m_value);