3 overrides of GetBytes
System.Private.CoreLib (2)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\EncoderNLS.cs (1)
106
public override unsafe int
GetBytes
(char* chars, int charCount, byte* bytes, int byteCount, bool flush)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\Encoding.cs (1)
1192
public override unsafe int
GetBytes
(char* chars, int charCount,
System.Text.Encoding.CodePages (1)
System\Text\EncoderNLS.cs (1)
134
public override unsafe int
GetBytes
(char* chars, int charCount, byte* bytes, int byteCount, bool flush)
2 references to GetBytes
System.Private.CoreLib (2)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\Encoder.cs (2)
199
return
GetBytes
(charsPtr, chars.Length, bytesPtr, bytes.Length, flush);
287
bytesUsed =
GetBytes
(chars, charsUsed, bytes, byteCount, flush);