Skip to content

Instantly share code, notes, and snippets.

@GroupDocsGists
Created December 4, 2019 16:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GroupDocsGists/a6cfd341a0c31ed4a4032930ca924cd0 to your computer and use it in GitHub Desktop.
Save GroupDocsGists/a6cfd341a0c31ed4a4032930ca924cd0 to your computer and use it in GitHub Desktop.
public class ConverterListener : IConverterListener
{
public void Started()
{
Console.WriteLine("Conversion started...");
}
public void Progress(byte current)
{
Console.WriteLine($"... {current} % ...");
}
public void Completed()
{
Console.WriteLine("... conversion completed");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment