VAGSuite.MSA15FileParser.isAxisID C# (CSharp) Method

isAxisID() private method

private isAxisID ( int id ) : bool
id int
return bool
        private bool isAxisID(int id)
        {
            int idstrip = id / 256;
            if (idstrip == 0xDB) return true;
            if (idstrip == 0xC0 || idstrip == 0xC1 || idstrip == 0xC2 || idstrip == 0xC4 || idstrip == 0xC5) return true;
            if (idstrip == 0xE0 || idstrip == 0xE4 || idstrip == 0xE5 || idstrip == 0xE9 || idstrip == 0xEA || idstrip == 0xEB || idstrip == 0xEC) return true;
            if (idstrip == 0xDA || idstrip == 0xDC || idstrip == 0xDD || idstrip == 0xDE || idstrip == 0xDF) return true;
            if (idstrip == 0xF9 || idstrip == 0xFE || idstrip == 0xFC) return true;
            if (idstrip == 0xD7 || idstrip == 0xE6) return true;
            if (idstrip == 0xD5) return true;
            if (idstrip == 0xC3 || idstrip == 0xE7) return true;
            return false;
        }