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

GetByteCount() public method

public GetByteCount ( char chars, int index, int count, bool flush ) : int
chars char
index int
count int
flush bool
return int
            public override int GetByteCount(char[] chars, int index, int count, bool flush)
            {
                return m_encoding.GetByteCount(chars, index, count);
            }

Same methods

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