public DecompiledOPCode(opCodeType type, string str, int skipLines, int elseLines)
 {
     this.opcodeType = type;
     this.OpString   = str;
     this.skipLines  = skipLines;
     this.elseLines  = elseLines;
 }
 public DecompiledOPCode(opCodeType type, string str)
 {
     this.opcodeType = type;
     this.OpString   = str;
 }