CoroutineSharp.Coroutine.NextStep C# (CSharp) Method

NextStep() private method

private NextStep ( ) : bool
return bool
        private bool NextStep()
        {
            //LogConsole.Debug("Coroutine.NextStep");

            if (disposed)
            {
                return false;
            }

            if (MoveNext())
            {
                CheckYield();
                return true;
            }
            else
            {
                coroutineManager.Remove(this);
                Dispose();
                return false;
            }
        }