Hi,
I have a solution with 2 projects:
- a c++ main project
- a c# project (display simulator)
Today these 2 apps share data using a loopback TCP client/server connection, but that's not very optimal (timing issues..).
I was wondering if there was a way to access the c# data from the c++ project directly and vice versa? (It seems to be possible with 2 c# projects..) If it's not possible, what's the best way to implement this with shared memory?
thanks! Michael
EDIT: thanks for the answers. The 2 projects used to be independant solutions and are both executables - I'm actually trying to merge the 2 into 1 solution / executable. For info: The c++ app is a PC version of an embedded app - the c# app is a lcd/HMI simulator.