Exemple #1
0
        public ShortVarWithoutIndex ReadShortVarWithoutIndex()
        {
            ShortVarWithoutIndex short_var = new ShortVarWithoutIndex();

            short_var.FirstByte = SavReader.ReadByte();
            short_var.Value     = SavReader.ReadInt16();
            return(short_var);
        }
Exemple #2
0
 public CCSManager()
 {
     this.BeginBlockLength = new ShortVarWithoutIndex();
     this.PoolCount        = new IntVar();
     this.EndBlockLength   = new ShortVarWithoutIndex();
 }