System.Text.GB18030Encoding.IsGBFourByteTrailing C# (CSharp) Method

IsGBFourByteTrailing() private method

private IsGBFourByteTrailing ( short ch ) : bool
ch short
return bool
        internal bool IsGBFourByteTrailing(short ch)
        {
            // Return true if we are in range for the trailing byte of a 4 byte sequence
            return ((ch) >= 0x30 && (ch) <= 0x39);
        }