11,570 questions
QRCodeData is not a Microsoft product.
Contact the author via https://github.com/codebude/QRCoder
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
QR code is not getting generating when input string is: abc#?abc
QRCodeGenerator l_qrGenerator = new QRCodeGenerator();
QRCodeData l_qrCodeData = l_qrGenerator.CreateQrCode(inputstring, QRCodeGenerator.ECCLevel.Q);
QRCode l_qrCode = new QRCode(l_qrCodeData);
Please let us know how to resolve it with such inputs. with other special characters QR code is getting generated.
QRCodeData is not a Microsoft product.
Contact the author via https://github.com/codebude/QRCoder
Expected behavior. Neither # nor ? are supported characters by QR alpha numeric encoding. To support them you need to switch to binary/byte encoding. I believe your library supports binary encoding.