System.Text.GB18030Encoding.IsGBLeadByte C# (CSharp) Метод

IsGBLeadByte() приватный Метод

private IsGBLeadByte ( short ch ) : bool
ch short
Результат bool
        internal bool IsGBLeadByte(short ch)
        {
            // return true if we're in the lead byte range
            return ((ch) >= 0x81 && (ch) <= 0xfe);
        }