नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
'type' : illegal dereference of a handle type
Remarks
The compiler detected an illegal dereference of a handle type. You can dereference a handle type and assign it to a reference. For more information, see Tracking Reference Operator.
Example
The following example generates C3288.
// C3288.cpp
// compile with: /clr
ref class R {};
int main() {
*(System::Object^) nullptr; // C3288
// OK
(System::Object^) nullptr; // OK
R^ r;
R% pr = *r;
}