interprocess C# python real time

前端 未结 3 1052
走了就别回头了
走了就别回头了 2020-12-19 13:41

I\'m working on a project where I\'ll have one application in C# and another one in Python. The C# application will continuously analyse stream of data and raise a flag each

3条回答
  •  半阙折子戏
    2020-12-19 14:17

    Simplest way is PIPE communication. another simple way that not suggested is SOCKET programming. Pipes and Named pipes are good solution to communicate between different processes (over different programming languages). SOCKET programming is like this but may need more Access Level and may be less security.

    other type of IPCs seems be unusable.

    see for more info:

    • C# - Pipes

    • python - Pipes

提交回复
热议问题