Skip to content

Instantly share code, notes, and snippets.

View naedisgood's full-sized avatar

James Lorenzo naedisgood

  • Student
  • Bulacan, Philippines
View GitHub Profile
@mazhar-ansari-ardeh
mazhar-ansari-ardeh / SamplePrint.cs
Last active September 16, 2023 00:18
A sample code that demonstrates document printing with C#
class SamplePrint
{
public bool Print(string printer)
{
if(string.IsNullOrEmpty(printer))
return false;
bool ret = false;
try
{