我想从Winform应用程序中运行wpf exe。我用这种方式:
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.FileName = @"E:\abc\folder\MyApplication.exe";
但是我想将一些纯字符串消息作为参数发送到wpf应用程序中。 我们如何实现它?
startInfo.Arguments = "header.h"; // this will not work
如果我们提供这样的参数,我们如何在wpf应用程序中检索它?