System.Text.GB18030Encoding.IsGBLeadByte C# (CSharp) Méthode

IsGBLeadByte() private méthode

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