I have a .Net application (VB in particular, although I would this to be as language agnostic as possible) that uses a COM object (made in C++).
I need to implement a event in COM that passes a char array from C++ to .Net. I guess I need to convert the array to a managed array;
How can I do this?
This is what I was looking for:
The COM event passes the char array as it is.