I have a c++ application that streams out data. I need to add a function in my C# application that listens for, and stores this data. I have some c++ knowledge, and some C# knowledge, but no networking experience. I am unable to use dll marshaling in this case.
What is a fairly simple, low latency way to send and receive this data? Should I be using Sockets/ports? or named pipes?
Thank you.