Hi
I have some legacy code written in C++ and I am trying to add a GUI (plus
some other functionalities) using C#.
Thus the problem that I am facing is to have C# and C++ live together. I am
thinking that the 2 worlds would communicate using a managedC++ layer.
So in C# I have some utilities functions that I would like to be able to use
from my managed C++ .
How can I call a C# function ( say void DisplayLogMessage(string message) )
from the managed C++ side?
What I need is the most efficient (performance and memory wise) approach.
Thanks.
Nuno.