I have a C # application that calls functions in a DLL written in C ++. Calls work fine and the code is executed using this method in C #:
[DllImport("myDLL.dll")]
public static extern void Function();
static void Main()
{
Function();
}
Now it works, I need C ++ executable code to send text to C #, where it can be displayed on the panel.
The text "step one ..." executes the code ... then "step two", etc., showing the running processes. Just basic stuff. I'm not sure how to approach this, since I'm not a C ++ guy. My main skills are .NET.
Greetings
Funky source
share