I\'m trying to print to Dot Matrix printers (various models) out of C#, currently I\'m using Win32 API (you can find alot of examples online) calls to send escape codes dire
First Convert the Sequence commands into character then pass to printer
Example Bold Font 27,69
string.Format("{0}{1}",Convert.ToChar(27),Convert.ToChar(69));
Perhaps a bit shorter as:
string.Format("{0}{1}",(char)(27),(char)(69));