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