System.Text.Encoding.DefaultEncoder.GetByteCount C# (CSharp) Method

GetByteCount() public method

public GetByteCount ( char chars, int count, bool flush ) : int
chars char
count int
flush bool
return int
            public unsafe override int GetByteCount(char* chars, int count, bool flush)
            {
                return m_encoding.GetByteCount(chars, count);
            }

Same methods

Encoding.DefaultEncoder::GetByteCount ( char chars, int index, int count, bool flush ) : int