'pointer' : array of pointers to value type cannot be declared
An array of pointers to a value type cannot be declared.
The following sample generates C3159:
#using <mscorlib.dll> __value struct B { }; void f( B*[] ); // C3159 void main() { }