fBaseXtensions.Helpers.Delayer.Test C# (CSharp) Method

Test() public method

public Test ( double multiplier = 1 ) : bool
multiplier double
return bool
        public bool Test(double multiplier = 1)
        {
            iCurrentLoops++;
            if (iCurrentLoops < DelayLoopLimit * multiplier) return false;

            Reset();
            return true;
        }