Skip to content

Instantly share code, notes, and snippets.

@NMZivkovic
Created June 3, 2018 17:00
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 NMZivkovic/541bc1ea55cbc29a64b87ec902ed8f39 to your computer and use it in GitHub Desktop.
Save NMZivkovic/541bc1ea55cbc29a64b87ec902ed8f39 to your computer and use it in GitHub Desktop.
public class Progress<T> : IProgress<T>
{
public Progress();
public Progress(Action<T> handler);
protected virtual void OnReport(T value);
public event EventHandler<T> ProgressChanged;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment