QrCodeNet 0.3.0

dotnet add package QrCodeNet --version 0.3.0
NuGet\Install-Package QrCodeNet -Version 0.3.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="QrCodeNet" Version="0.3.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add QrCodeNet --version 0.3.0
#r "nuget: QrCodeNet, 0.3.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install QrCodeNet as a Cake Addin
#addin nuget:?package=QrCodeNet&version=0.3.0

// Install QrCodeNet as a Cake Tool
#tool nuget:?package=QrCodeNet&version=0.3.0

Provdes an easy to use, fully managed .Net library for handling QR code according to ISO/IEC 18004.

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.3.0 2,204 1/18/2013

This version contains only following functionality:
Generation QR code
GDI+ QR code rendering: WinForm, WriteableBitmap(WPF), DrawingContext.
QR code Windows Forms Control, WPF control
Save to file
Demo application which generates QR code from text as you type and allows you to save it into the image file.
Encoder should be now native code, no longer ZXing's port.
Auto analyse input string and use proper char encoder to encode. (It will switch to UTF8 if normal encoder can not handle input string)
It will throw exception when input string is empty, null or too huge where even version 40 QrCode can not contain, or you can use TryEncode method, return value's isContainMatrix property will indicate whether encode successful or not.