10 overrides of GetChars
System.Console (1)
src\libraries\Common\src\System\Text\ConsoleEncoding.cs (1)
123
public override unsafe int
GetChars
(byte* bytes, int byteCount, char* chars, int charCount)
System.Formats.Asn1 (2)
System\Formats\Asn1\AsnCharacterStringEncodings.cs (2)
154
public override unsafe int
GetChars
(byte* bytes, int byteCount, char* chars, int charCount)
505
public override unsafe int
GetChars
(byte* bytes, int byteCount, char* chars, int charCount)
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\Text\ASCIIEncoding.cs (1)
586
public override unsafe int
GetChars
(byte* bytes, int byteCount, char* chars, int charCount)
src\libraries\System.Private.CoreLib\src\System\Text\Latin1Encoding.cs (1)
410
public override unsafe int
GetChars
(byte* bytes, int byteCount, char* chars, int charCount)
src\libraries\System.Private.CoreLib\src\System\Text\UnicodeEncoding.cs (1)
305
public override unsafe int
GetChars
(byte* bytes, int byteCount, char* chars, int charCount)
src\libraries\System.Private.CoreLib\src\System\Text\UTF32Encoding.cs (1)
313
public override unsafe int
GetChars
(byte* bytes, int byteCount, char* chars, int charCount)
src\libraries\System.Private.CoreLib\src\System\Text\UTF7Encoding.cs (1)
349
public override unsafe int
GetChars
(byte* bytes, int byteCount, char* chars, int charCount)
src\libraries\System.Private.CoreLib\src\System\Text\UTF8Encoding.cs (1)
537
public override unsafe int
GetChars
(byte* bytes, int byteCount, char* chars, int charCount)
System.Text.Encoding.CodePages (1)
System\Text\EncodingNLS.cs (1)
255
public override unsafe int
GetChars
(byte* bytes, int byteCount, char* chars, int charCount)
6 references to GetChars
Microsoft.ML.Tokenizers.Tests (1)
src\Microsoft.ML.Tokenizers\Utils\Helpers.netstandard.cs (1)
109
return Encoding.UTF8.
GetChars
(bytesPtr, bytes.Length, charsPtr, chars.Length);
System.Console (1)
src\libraries\Common\src\System\Text\ConsoleEncoding.cs (1)
125
return _encoding.
GetChars
(bytes, byteCount, chars, charCount);
System.Formats.Asn1 (1)
System\Formats\Asn1\AsnCharacterStringEncodings.cs (1)
513
return s_latin1Encoding.
GetChars
(bytes, byteCount, chars, charCount);
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\String.cs (1)
551
int doubleCheck = encoding.
GetChars
(bytes, byteLength, pTempChars, stringLength);
src\libraries\System.Private.CoreLib\src\System\Text\Encoding.cs (1)
1251
_encoding.
GetChars
(bytes, byteCount, chars, charCount);
src\System\Text\StringBuilder.CoreCLR.cs (1)
92
convertedChars = Encoding.UTF8.
GetChars
((byte*)newBuffer, newLength, pChunkChars, newLength);