Example #1
0
        public void ExecuteFile(string filename)
        {
            if (!IsInDebugBreakMode())
            {
                NoExecutionIfNotStoppedInDebuggerError();
                return;
            }

            if (_activeEvaluator != null)
            {
                _activeEvaluator.ExecuteFile(filename);
            }
        }