System.Text.Encoding.DefaultDecoder.GetCharCount C# (CSharp) Method

GetCharCount() public method

public GetCharCount ( byte bytes, int count, bool flush ) : int
bytes byte
count int
flush bool
return int
            public unsafe override int GetCharCount(byte* bytes, int count, bool flush)
            {
                // By default just call the encoding version, no flush by default
                return m_encoding.GetCharCount(bytes, count);
            }

Same methods

Encoding.DefaultDecoder::GetCharCount ( byte bytes, int index, int count ) : int
Encoding.DefaultDecoder::GetCharCount ( byte bytes, int index, int count, bool flush ) : int