SDRSharper/SDRSharper.Radio/SDRSharp.Radio/Counter.cs
SDRSharpR c07e6e6034 SDRSharper (SDRSharp Remake) Full Source (VS2017)
SDRSharper (SDRSharp Remake) Full Source (VS2017)
2018-03-26 14:02:05 -07:00

27 lines
404 B
C#

using System.Diagnostics;
namespace SDRSharp.Radio
{
public class Counter : Stopwatch
{
private int _count;
public long Elaps(int init)
{
if (--this._count > 0)
{
return 0L;
}
if (init != 0)
{
base.Stop();
}
long elapsedMilliseconds = base.ElapsedMilliseconds;
this._count = init;
base.Reset();
base.Start();
return elapsedMilliseconds / init;
}
}
}