Hello

I am trying to call a function in C from C# though c ++

so basically C# -> C++ - >C

In C#, I have byte[] bytes - which reads the information from the file. I am passing the byte array and the size to C++ .

In C++ I get the byte array and the size but I am not able to convert to the specific data types.

Code:
void Image::OpenMemFile(array<Byte>^ data, unsigned
...