示例#1
0
        private void CountCall(Step calledStep)
        {
            if (EnteringLoopWith(calledStep))
            {
                if (Started)
                {
                    ResetSteps();
                }

                calledStep.CountCall();
                CountCall();
            }
            else
            {
                calledStep.CountCall();
            }
        }
示例#2
0
        private void CountCall(Step calledStep)
        {
            if (EnteringLoopWith(calledStep))
            {
                if (Started)
                    ResetSteps();

                calledStep.CountCall();
                CountCall();
            }
            else
                calledStep.CountCall();
        }