如何从 Windows C# (Visual Studio) 运行 cygwin 编译的程序?
嗨,
我想使用 c# 在 Visual Studio 中运行 cygwin 编译的程序,
谢谢:)
L
BTW:
System.Diagnostics.Process MyProcess = new System.Diagnostics.Process();
MyProcess.StartInfo.UseShellExecute = false;
MyProcess.StartInfo.FileName = "C:\\cygwin\\Cygwin.bat";
MyProcess.StartInfo.CreateNoWindow = true;
MyProcess.Start();
这是我到目前为止尝试过的代码,我不知道如何让它运行 cygwin 编译的程序(AGFL 的 EP4IR)是要运行的目标程序)
谢谢
HI,
I would like to run a cygwin compiled program in visual studio using c#
Thanks :)
L
BTW:
System.Diagnostics.Process MyProcess = new System.Diagnostics.Process();
MyProcess.StartInfo.UseShellExecute = false;
MyProcess.StartInfo.FileName = "C:\\cygwin\\Cygwin.bat";
MyProcess.StartInfo.CreateNoWindow = true;
MyProcess.Start();
This is the code I've tried so far, I have no idea how to make it run the cygwin compiled program tho (AGFL's EP4IR is the targeted program to run)
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
就像任何其他程序一样。您是否正在运行任何具体的知名程序或您自己的程序?
另外,请参阅 StackOverflow 上的相关问题:从 .NET 执行 Cygwin 进程
Just like any other program. Are you running any concrete well-known program or your own?
Also, see this related question here on StackOverflow: Executing a Cygwin process from .NET