I have some C code which will be called from C# using P/Invoke. I have a C struct member for which I am trying to define an C# equivalent.

Array16 *data;

typedef unsigned char Array16[16];

How do I define the C# equivalent of this C data member?