24 references to m_value
System.Private.CoreLib (24)
src\libraries\System.Private.CoreLib\src\System\Char.cs (24)
111
return (int)
m_value
| ((int)
m_value
<< 16);
122
return
m_value
== ((char)obj).
m_value
;
128
return
m_value
== obj;
148
return
m_value
- ((char)value).
m_value
;
153
return
m_value
- value;
159
return ToString(
m_value
);
164
return ToString(
m_value
);
181
destination[0] =
m_value
;
194
string IFormattable.ToString(string? format, IFormatProvider? formatProvider) => ToString(
m_value
);
524
return
m_value
;
529
return Convert.ToSByte(
m_value
);
534
return Convert.ToByte(
m_value
);
539
return Convert.ToInt16(
m_value
);
544
return Convert.ToUInt16(
m_value
);
549
return Convert.ToInt32(
m_value
);
554
return Convert.ToUInt32(
m_value
);
559
return Convert.ToInt64(
m_value
);
564
return Convert.ToUInt64(
m_value
);
1276
int IBinaryInteger<char>.GetShortestBitLength() => (sizeof(char) * 8) - ushort.LeadingZeroCount(
m_value
);
1284
if (BinaryPrimitives.TryWriteUInt16BigEndian(destination,
m_value
))
1297
if (BinaryPrimitives.TryWriteUInt16LittleEndian(destination,
m_value
))