הערה
גישה לעמוד זה דורשת אישור. אתה יכול לנסות להיכנס או לשנות תיקיות.
גישה לעמוד זה דורשת אישור. אתה יכול לנסות לשנות מדריכים.
'operator' : illegal operand 'nullptr'
Remarks
nullptr cannot be an operand.
Example
The following example generates C2389:
// C2389.cpp
// compile with: /clr
int main() {
throw nullptr; // C2389
}