示例#1
0
 public errorElement(string Description, byte rAbase, byte rVbase, byte rSbase, byte oBase, byte rAext, byte rVext, byte rSext, byte oExt, string hExt, string lExt, ErrDecode Decode)
 {
     this.rAbase = rAbase;
     this.rVbase = rVbase;
     this.rSbase = rSbase;
     this.rBase  = oBase;
     this.rAext  = rAext;
     this.rVext  = rVext;
     this.rSext  = rSext;
     this.rBext  = oExt;
     this.hExt   = hExt;
     this.lExt   = lExt;
     description = Description;
     decode      = Decode;
     state       = new errorState();
 }
示例#2
0
 public void Decode()
 {
     state = decode(rAbase, rVbase, rSbase, rBase, rAext, rVext, rSext, rBext, hExt, lExt);
 }