3 overrides of TryGetChars
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Text\ASCIIEncoding.cs (1)
617public override unsafe bool TryGetChars(ReadOnlySpan<byte> bytes, Span<char> chars, out int charsWritten)
src\libraries\System.Private.CoreLib\src\System\Text\Latin1Encoding.cs (1)
533public override unsafe bool TryGetChars(ReadOnlySpan<byte> bytes, Span<char> chars, out int charsWritten)
src\libraries\System.Private.CoreLib\src\System\Text\UTF8Encoding.cs (1)
568public override unsafe bool TryGetChars(ReadOnlySpan<byte> bytes, Span<char> chars, out int charsWritten)
1 reference to TryGetChars
System.Formats.Asn1 (1)
System\Formats\Asn1\AsnDecoder.Text.cs (1)
396return encoding.TryGetChars(source, destination, out charsWritten);