示例#1
0
        public bool IsSignature(CustomBinaryReader reader)
        {
            int type = reader.PeekChar();

            return(type == 0x01);
        }
示例#2
0
        protected override bool SuppressElement(CustomBinaryReader reader)
        {
            int type = reader.PeekChar();

            return(type == 0x01);
        }
示例#3
0
 protected override bool SuppressElement(CustomBinaryReader reader)
 {
     int type=reader.PeekChar();
     return type == 0x01;
 }