Generating QR codes and decoding them are not supported by .NET natively, so we have to use some 3rd party library. I chose a very simple-to-use one from NuGet: MessagingToolkit.QRCode I’ve created a new WinForms application, added this package to …
Tag: encoding
.NET has native class in System.Security namespace, called: SecureString Using of this class could be useful if we don’t want to send strings over our private/public network in plain text format. Of course, this is not a 100% secure solution. …