Design Patterns or Good ways to solve the problem
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 interacti开发者_高级运维ng.
What are best ways to solve this problem (using Design Patterns).
Thank you, Harsha
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.
精彩评论