| 1234567891011121314151617181920212223242526272829303132333435 |
- //
- // System.Diagnostics.CounterSampleCalculator.cs
- //
- // Authors:
- // Jonathan Pryor ([email protected])
- // Andreas Nahr ([email protected])
- //
- // (C) 2002
- // (C) 2003 Andreas Nahr
- //
- using System;
- namespace System.Diagnostics {
- public sealed class CounterSampleCalculator {
- private CounterSampleCalculator ()
- {
- }
- public static float ComputeCounterValue (CounterSample newSample)
- {
- return ComputeCounterValue (CounterSample.Empty, newSample);
- }
- [MonoTODO("What's the algorithm?")]
- public static float ComputeCounterValue (CounterSample oldSample,
- CounterSample newSample)
- {
- throw new NotImplementedException ();
- }
- }
- }
|