how to pass some “statistics” from c# program to another program?

后端 未结 5 403
渐次进展
渐次进展 2021-01-22 07:36

I have command-line program that \"do a lot of work\" and produce \"a lot of statistics\". It\'s stocks trading software pretty critical to delays, bugs, and whatever, so I don\

5条回答
  •  北恋
    北恋 (楼主)
    2021-01-22 08:35

    You can use any form of IPC (inter-process communication).

    Since you're planning to go over the network in the future, I recommend WCF. If the GUI program isn't .NET, then you may need to use a lower-level solution, such as named pipes or sockets.

提交回复
热议问题