System.Text.DecoderNLS.GetChars C# (CSharp) Method

GetChars() public method

public GetChars ( byte bytes, int byteIndex, int byteCount, char chars, int charIndex ) : int
bytes byte
byteIndex int
byteCount int
chars char
charIndex int
return int
        public unsafe override int GetChars(byte[] bytes, int byteIndex, int byteCount,
                                             char[] chars, int charIndex)
        {
            return GetChars(bytes, byteIndex, byteCount, chars, charIndex, false);
        }

Same methods

DecoderNLS::GetChars ( byte bytes, int byteCount, char chars, int charCount, bool flush ) : int
DecoderNLS::GetChars ( byte bytes, int byteIndex, int byteCount, char chars, int charIndex, bool flush ) : int