24 references to m_value
System.Private.CoreLib (24)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Char.cs (24)
112
return (int)
m_value
| ((int)
m_value
<< 16);
123
return
m_value
== ((char)obj).
m_value
;
129
return
m_value
== obj;
168
return
m_value
- ((char)value).
m_value
;
173
return
m_value
- value;
179
return ToString(
m_value
);
184
return ToString(
m_value
);
201
destination[0] =
m_value
;
214
string IFormattable.ToString(string? format, IFormatProvider? formatProvider) => ToString(
m_value
);
591
return
m_value
;
596
return Convert.ToSByte(
m_value
);
601
return Convert.ToByte(
m_value
);
606
return Convert.ToInt16(
m_value
);
611
return Convert.ToUInt16(
m_value
);
616
return Convert.ToInt32(
m_value
);
621
return Convert.ToUInt32(
m_value
);
626
return Convert.ToInt64(
m_value
);
631
return Convert.ToUInt64(
m_value
);
1330
int IBinaryInteger<char>.GetShortestBitLength() => (sizeof(char) * 8) - ushort.LeadingZeroCount(
m_value
);
1338
if (BinaryPrimitives.TryWriteUInt16BigEndian(destination,
m_value
))
1351
if (BinaryPrimitives.TryWriteUInt16LittleEndian(destination,
m_value
))