コード例 #1
0
        internal static string Shell(string cmdline, bool suppresserrors)
        {
#if DEBUG
            _checkfornullargs(cmdline);
#endif
            if (_ShouldDebugShellExec)
            {
                return(Exec.DDShell(cmdline, suppresserrors, false));
            }
            return(Exec.Shell(cmdline, suppresserrors));
        }