Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
'type' : pointer to interior/pin pointer is disallowed by the common language runtime
The compiler encountered an invalid type.
The following sample generates C3229:
// C3239.cpp
// compile with: /clr
int main() {
interior_ptr<int>* pip0; // C3239
// OK
int * pip1;
interior_ptr<int> pip2;
int ** pip;
}