3 overrides of GetBytes
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Text\EncoderNLS.cs (1)
105
public override unsafe int
GetBytes
(char* chars, int charCount, byte* bytes, int byteCount, bool flush)
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\libraries\System.Private.CoreLib\src\System\Text\Encoder.cs (2)
198
return
GetBytes
(charsPtr, chars.Length, bytesPtr, bytes.Length, flush);
286
bytesUsed =
GetBytes
(chars, charsUsed, bytes, byteCount, flush);