10 overrides of GetChars
System.Console (1)
src\runtime\src\libraries\Common\src\System\Text\ConsoleEncoding.cs (1)
123public override unsafe int GetChars(byte* bytes, int byteCount, char* chars, int charCount)
System.Formats.Asn1 (2)
System\Formats\Asn1\AsnCharacterStringEncodings.cs (2)
110public override unsafe int GetChars(byte* bytes, int byteCount, char* chars, int charCount) 452public override unsafe int GetChars(byte* bytes, int byteCount, char* chars, int charCount)
System.Private.CoreLib (6)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\ASCIIEncoding.cs (1)
587public override unsafe int GetChars(byte* bytes, int byteCount, char* chars, int charCount)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\Latin1Encoding.cs (1)
411public override unsafe int GetChars(byte* bytes, int byteCount, char* chars, int charCount)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\UnicodeEncoding.cs (1)
305public override unsafe int GetChars(byte* bytes, int byteCount, char* chars, int charCount)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\UTF32Encoding.cs (1)
313public override unsafe int GetChars(byte* bytes, int byteCount, char* chars, int charCount)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\UTF7Encoding.cs (1)
349public override unsafe int GetChars(byte* bytes, int byteCount, char* chars, int charCount)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\UTF8Encoding.cs (1)
537public override unsafe int GetChars(byte* bytes, int byteCount, char* chars, int charCount)
System.Text.Encoding.CodePages (1)
System\Text\EncodingNLS.cs (1)
255public override unsafe int GetChars(byte* bytes, int byteCount, char* chars, int charCount)
7 references to GetChars
System.Console (1)
src\runtime\src\libraries\Common\src\System\Text\ConsoleEncoding.cs (1)
125return _encoding.GetChars(bytes, byteCount, chars, charCount);
System.Formats.Asn1 (1)
System\Formats\Asn1\AsnCharacterStringEncodings.cs (1)
460return s_latin1Encoding.GetChars(bytes, byteCount, chars, charCount);
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\String.cs (1)
555int doubleCheck = encoding.GetChars(bytes, byteLength, pTempChars, stringLength);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\Encoding.cs (2)
881return GetChars(bytesPtr, bytes.Length, charsPtr, chars.Length); 1251_encoding.GetChars(bytes, byteCount, chars, charCount);
System\Runtime\InteropServices\PInvokeMarshal.Unix.cs (1)
32return System.Text.Encoding.UTF8.GetChars(multiByteStr, multiByteLen, wideCharStr, wideCharLen);
System.Text.RegularExpressions.Generator (1)
src\runtime\src\libraries\Common\src\Polyfills\EncodingPolyfills.cs (1)
48return encoding.GetChars(bytesPtr, bytes.Length, charsPtr, chars.Length);