设计模式或解决问题的好方法
我需要在 Winform C# 中开发一个应用程序,并尝试找到适合该应用程序的设计模式。
基本上,我的应用程序与几个 Exes 交互,并监视输出,并根据输出,用户将单击按钮来触发另一个控制台应用程序(如图所示)。
现在,我已经为与我的应用程序交互的每个控制台应用程序编写了单独的类。
解决此问题的最佳方法是什么(使用设计模式)。
谢谢你, 戒日
I need to develop an application in Winform C# and trying to find out suitable design pattern for this application.
Basically, My application Interacts with couple of Exes and output is monitored and based on the output, user will click button to trigger another console application (as shown in fig).
Right now, I have written separate class for every console application with which my application is interacting.
What are best ways to solve this problem (using Design Patterns).
Thank you,
Harsha
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
控制台应用程序是 3d 的吗?
如果没有,您可以使用该应用程序的方法创建另一个项目(DLL),并在您的 Winforms 应用程序上使用它。
Are the Console App from 3d?
If not, You are able to create another Project(DLL) with the methods of that apps, and use it on your Winforms app.