Here I have a C# metro app with a C++ WinRT component. I need to do something in WinRT, like assign a photo\'s name/path, and retrieve photo\'s thumbnail.
First, I w
The following array types can be passed across the ABI:
A value struct or value class can contain as fields only fundamental numeric types, enum classes, or Platform::String^.
So you cannot use a value struct with arrays. And you cannot use arrays of uint8[] type.
You should pass arrays and structs separately or by using a ref class.