System.Text.EncodingNLS.GetCharCount C# (CSharp) Method

GetCharCount() private method

private GetCharCount ( byte bytes, int count ) : int
bytes byte
count int
return int
        public unsafe override int GetCharCount(byte* bytes, int count)
        {
            // Validate Parameters
            if (bytes == null)
                throw new ArgumentNullException(nameof(bytes), SR.ArgumentNull_Array);

            if (count < 0)
                throw new ArgumentOutOfRangeException(nameof(count), SR.ArgumentOutOfRange_NeedNonNegNum);
            Contract.EndContractBlock();

            return GetCharCount(bytes, count, null);
        }

Same methods

EncodingNLS::GetCharCount ( byte bytes, int count, DecoderNLS decoder ) : int
EncodingNLS::GetCharCount ( byte bytes, int index, int count ) : int

Usage Example

示例#1
0
        public override unsafe int GetCharCount(byte *bytes, int count, bool flush)
        {
            if (bytes is null)
            {
                throw new ArgumentNullException(nameof(bytes));
            }

            if (count < 0)
            {
                throw new ArgumentOutOfRangeException(nameof(count), SR.ArgumentOutOfRange_NeedNonNegNum);
            }

            // Remember the flush
            m_mustFlush       = flush;
            m_throwOnOverflow = true;

            // By default just call the encoding version, no flush by default
            return(m_encoding.GetCharCount(bytes, count, this));
        }
All Usage Examples Of System.Text.EncodingNLS::GetCharCount