ProgressDelegate.cs 328 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Y.Utils.DelegateUtils
  6. {
  7. public class ProgressDelegate
  8. {
  9. //public delegate void ProgressHandler(long current, long total);
  10. public delegate void ProgressHandler(object sender, ProgressEventArgs e);
  11. }
  12. }