7 references to MaxCharBytesSize
System.Private.CoreLib (7)
src\libraries\System.Private.CoreLib\src\System\IO\BinaryReader.cs (7)
51
_maxCharsSize = encoding.GetMaxCharCount(
MaxCharBytesSize
);
126
Span<byte> charBytes = stackalloc byte[
MaxCharBytesSize
];
259
Span<byte> charBytes = stackalloc byte[
MaxCharBytesSize
];
265
int readLength = Math.Min(
MaxCharBytesSize
, stringLength - currPos);
322
Span<byte> charBytes = stackalloc byte[
MaxCharBytesSize
];
368
if (numBytes >
MaxCharBytesSize
)
370
numBytes =
MaxCharBytesSize
;