在我的 C++ 应用程序中,这是一个.exe
,我有这个:
int main(int argc, char** argv){
--argc;
++argv;
if (argc != 1){
throw std::exception("Bad command line.");
}
ETC
但是我如何在我的 C# (WPF) 应用程序中调用它?我试过System.Diagnostics.Process.Start("pathofapp.exe", "stringiwantedtouse")
了,但我得到了Bad Command Line
。我应该怎么办?