Raw Printer tools for C#
C# Raw Printing helper for dot matrix and thermal printers.
Setup
Download RawPrinter.dll
library from GitHub Releases and add it to a project as a dependency.
Usage
var printer = new RawPrinter.Printer("Printer Name");if (!printer.Open("Job Name")) return;printer.SendData("This text is sent to a line printer\r\n");printer.SendData("===================================\r\n");printer.Close();