Advertisement
Guest User

Untitled

a guest
Sep 9th, 2016
329
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. class PerformanceStopwatch : IDisposable
  2. {
  3. Stopwatch stopwatch;
  4.  
  5. public PerforamnceStopwatch()
  6. {
  7. stopwatch = new Stopwatch();
  8. stopwatch.Start();
  9. }
  10.  
  11. public void Dispose()
  12. {
  13. stopwatch.stop();
  14. Debug.WriteLine(stopwatch.Elapsed);
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement