在Application.Restart()之前修改命令行参数

时间:2016-06-11 22:56:30

标签: c# .net winforms command-line-arguments restart

我的winforms(而不是clickonce)应用程序接受只应处理一次的命令行参数。应用程序使用Application.Restart()在对其配置进行特定更改后重新启动。

根据MSDN on Application.Restart()

  

如果您的应用程序最初在首次执行时提供了命令行选项,则Restart将使用相同的选项再次启动应用程序。

这导致命令行参数被多次处理。

有没有办法在调用Application.Restart()之前修改(存储的)命令行参数?

1 个答案:

答案 0 :(得分:2)

您可以使用以下方法重新启动应用程序而无需原始命令行参数:

// using System.Diagnostics;
// using System.Windows.Forms;

public static void Restart()
{
    ProcessStartInfo startInfo = Process.GetCurrentProcess().StartInfo;
    startInfo.FileName = Application.ExecutablePath;
    var exit = typeof(Application).GetMethod("ExitInternal",
                        System.Reflection.BindingFlags.NonPublic |
                        System.Reflection.BindingFlags.Static);
    exit.Invoke(null, null);
    Process.Start(startInfo);
}

此外,如果您需要修改命令行参数,它足以使用Environment.GetCommandLineArgs方法查找命令行参数并创建新的命令行参数字符串并将其传递给startInfo GetCommandLineArgs属性/xvar args = Environment.GetCommandLineArgs().Skip(1); var newArgs = string.Join(" ", args.Where(x => x != @"/x").Select(x => @"""" + x + @"""")); startInfo.Arguments = newArgs; 返回的数组的第一项是应用程序可执行路径,因此我们忽略它。以下示例从原始命令行中删除参数Application.Restart(如果可用):

{{1}}

有关Arguments工作原理的详细信息,请查看{{1}} Application.Restart