CounterSampleCalculator.cs 640 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // System.Diagnostics.CounterSampleCalculator.cs
  3. //
  4. // Authors:
  5. // Jonathan Pryor ([email protected])
  6. //
  7. // (C) 2002
  8. //
  9. using System;
  10. using System.Collections;
  11. using System.Diagnostics;
  12. namespace System.Diagnostics {
  13. public sealed class CounterSampleCalculator {
  14. // [MonoTODO("What's the algorithm?")]
  15. // public static float ComputeCounterValue (CounterSample newSample)
  16. // {
  17. // throw new NotImplementedException ();
  18. // }
  19. //
  20. // [MonoTODO("What's the algorithm?")]
  21. // public static float ComputeCounterValue (CounterSample oldSample,
  22. // CounterSample newSample)
  23. // {
  24. // throw new NotImplementedException ();
  25. // }
  26. }
  27. }