Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ GetChars() [4/7]

override int System.Formats.Asn1.SpanBasedEncoding.GetChars ( byte[] bytes,
int byteIndex,
int byteCount,
char[] chars,
int charIndex )
inlineinherited

Definition at line 61 of file SpanBasedEncoding.cs.

62 {
63 return GetChars(new ReadOnlySpan<byte>(bytes, byteIndex, byteCount), new Span<char>(chars, charIndex, chars.Length - charIndex), write: true);
64 }
int GetChars(ReadOnlySpan< byte > bytes, Span< char > chars, bool write)

References System.byteCount, System.byteIndex, System.bytes, System.charIndex, System.chars, and System.Formats.Asn1.SpanBasedEncoding.GetChars().