Exemplo n.º 1
0
 public DecodeResult(QRCodeDecoder enclosingInstance, sbyte[] decodedBytes, int numErrors, bool correctionSucceeded)
 {
     InitBlock(enclosingInstance);
     this.decodedBytes        = decodedBytes;
     this.numCorrections      = numErrors;
     this.correctionSucceeded = correctionSucceeded;
 }
Exemplo n.º 2
0
 private void InitBlock(QRCodeDecoder enclosingInstance)
 {
     this.enclosingInstance = enclosingInstance;
 }