24 references to m_value
System.Private.CoreLib (24)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Char.cs (24)
112return (int)m_value | ((int)m_value << 16); 123return m_value == ((char)obj).m_value; 129return m_value == obj; 168return m_value - ((char)value).m_value; 173return m_value - value; 179return ToString(m_value); 184return ToString(m_value); 201destination[0] = m_value; 217string IFormattable.ToString(string? format, IFormatProvider? formatProvider) => ToString(m_value); 594return m_value; 599return Convert.ToSByte(m_value); 604return Convert.ToByte(m_value); 609return Convert.ToInt16(m_value); 614return Convert.ToUInt16(m_value); 619return Convert.ToInt32(m_value); 624return Convert.ToUInt32(m_value); 629return Convert.ToInt64(m_value); 634return Convert.ToUInt64(m_value); 1333int IBinaryInteger<char>.GetShortestBitLength() => (sizeof(char) * 8) - ushort.LeadingZeroCount(m_value); 1341if (BinaryPrimitives.TryWriteUInt16BigEndian(destination, m_value)) 1354if (BinaryPrimitives.TryWriteUInt16LittleEndian(destination, m_value))