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

IsGBLeadByte() private method

private IsGBLeadByte ( short ch ) : bool
ch short
return bool
        internal bool IsGBLeadByte(short ch)
        {
            // return true if we're in the lead byte range
            return ((ch) >= 0x81 && (ch) <= 0xfe);
        }