Communicate between windows form and console
Just wondering if anyone has an example of communicating from console app to windows form or vice vers开发者_如何学Ca. Thanks
I'd try with Inter-Process Communication mechanisms (IPCs) or with writing/reading temp files. It depends on your application.
What form of communication are you talking about?
Information can be written to and read from a flat text file, XML files, a database etc.
There could be direct communication via sockets.
Or are you talking about one application "controlling" the other in some way?
精彩评论