I have byte[]
in C#. I want to pass this value to C++ (CLR). How to do it ?
I have tried converting the byte[][]
to char[][]
in C#.
Now Is it possible to use this char** variable in C++? If it is not, what I need to use ?
EDIT:
I want the output in character buffer in C++ code.
My Existing code can be found at Passing objects between C# library and C++ (CLR)