NPlot.StepTimer.Reset C# (CSharp) Method

Reset() public static method

public static Reset ( ) : void
return void
        public static void Reset()
        {
            AllStopwatches.Clear();
        }

Usage Example

        public void RefreshSpeedTest()
        {
            ST.Reset();

            DebugStopwatch sw   = new DebugStopwatch();
            double         time = sw.TimeEvent(RefreshSpeed);

            Console.WriteLine(time.ToString() + " seconds to on average");

            Console.WriteLine(ST.GetResultsPercent());
        }