3 overrides of TryGetByteCount
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Text\ASCIIEncoding.cs (1)
764internal sealed override bool TryGetByteCount(Rune value, out int byteCount)
src\libraries\System.Private.CoreLib\src\System\Text\Latin1Encoding.cs (1)
642internal sealed override bool TryGetByteCount(Rune value, out int byteCount)
src\libraries\System.Private.CoreLib\src\System\Text\UTF8Encoding.cs (1)
769internal sealed override bool TryGetByteCount(Rune value, out int byteCount)
2 references to TryGetByteCount
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Text\EncoderFallback.cs (1)
251if (!encoding.TryGetByteCount(thisRune, out int byteCountThisIteration))
src\libraries\System.Private.CoreLib\src\System\Text\EncoderNLS.cs (1)
285if (_encoding.TryGetByteCount(rune, out int byteCount))