Hello all,
I have been assigned to a task where I need to connect to a socket and receive a lot of updates (3K-4K messages per second) I also need to send some message to server for authentication and configuration.
There is an existing C++ apps given by the data provider and they have no c# sample. I have been trying to write this app with C# but having some difficulties; especially with marshalling structs containing variable length arrays etc.. Am I on the right path to do this?
I have been advised to use PInvoke but looks like I need to first modify their C++ sample to make it API like and then I can invoke it C# properly. And I am not sure about the performance with PInvoke.