Is there a way by which I can asynchronously communicate with C # code from C ++ in the same process?
I mean, I need to mix managed C # and unmanaged C ++ (using pInvoke) in the same WindowsCE based application. The C # part is the core of the application. The C ++ component has a thread that listens for events when the event is intercepted. I want to have a way to communicate with part of C # when the event was triggered.
At the moment, I thought events were a way of communicating between C ++ and C #, but is this possible?
Is there any way to make this message asynchronously?
thanks,
source share