NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Compiler Error C3159

'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() {
}