How to embed a Console application inside a Winforms application

后端 未结 1 1528
挽巷
挽巷 2020-12-19 01:10

I\'m developing an application which acts as a GUI for Minecraft Server (runs as a console Java application).

I have finished it and I also want to add a console in

相关标签:
1条回答
  • 2020-12-19 01:48

    You cannot target both subsystem gui and console in the same module (msdn).

    Instead, you could add a separate console application that uses SOAP to communicate with your application. Take a look at WCF to achieve this task.

    0 讨论(0)
提交回复
热议问题