.NET Barcode SDK Tutorial: Build a Barcode Generator & Reader App with ZXing and Dynamsoft API

This page summarizes the projects mentioned and recommended in the original post on dev.to

Sevalla - Deploy and host your apps and databases, now with $50 credit!
Sevalla is the PaaS you have been looking for! Advanced deployment pipelines, usage-based pricing, preview apps, templates, human support by developers, and much more!
sevalla.com
featured
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
www.influxdata.com
featured
  1. dotnet-barcode-qr-code-sdk

    .NET barcode SDK for Windows, Linux, macOS, Android and iOS

  2. Sevalla

    Deploy and host your apps and databases, now with $50 credit! Sevalla is the PaaS you have been looking for! Advanced deployment pipelines, usage-based pricing, preview apps, templates, human support by developers, and much more!

    Sevalla logo
  3. maui-barcode-mrz-document-scanner

    Scan barcode, document and MRZ with Dynamsoft Capture Vision SDKs and .NET MAUI

    private string GenerateRandomContent(BarcodeFormat format) { Random rnd = new Random(); switch (format) { case BarcodeFormat.EAN_13: int part1 = rnd.Next(10, 99); int part2 = rnd.Next(100000000, 999999999); int part3 = rnd.Next(0, 9); return $"{part1}{part2}{part3}"; case BarcodeFormat.EAN_8: return rnd.Next(1000000, 9999999).ToString(); case BarcodeFormat.CODE_39: case BarcodeFormat.CODE_128: case BarcodeFormat.CODABAR: return "ZX" + rnd.Next(100000, 999999); case BarcodeFormat.QR_CODE: return "https://www.dynamsoft.com?id=" + rnd.Next(1000, 9999); case BarcodeFormat.UPC_A: return rnd.NextInt64(10000000000L, 99999999999L).ToString(); case BarcodeFormat.ITF: return rnd.Next(100000000, 999999999).ToString(); default: return "TEST" + rnd.Next(1000, 9999); } }

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • How to Build a Web Barcode Scanner App with HTML5 and JavaScript

    1 project | dev.to | 24 Jun 2025
  • How to Build a Web MRZ Scanner and Reader with HTML5 and JavaScript

    2 projects | dev.to | 3 Jun 2025
  • Developing a Web MRZ and VIN Scanner with JavaScript and HTML5

    1 project | dev.to | 14 Apr 2025
  • Customizing Dynamsoft Android Barcode Scanner API to Filter and Select Desired Results

    1 project | dev.to | 20 Mar 2025
  • How to Integrate a Barcode Scanner Component into iOS Apps in Minutes

    3 projects | dev.to | 26 Feb 2025

Did you know that Objective-C is
the 39th most popular programming language
based on number of references?