หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
syntax error : 'identifier' is a new keyword
Remarks
An identifier was used that is now a reserved keyword in the language.
Example
The following example generates C2147:
// C2147.cpp
// compile with: /clr
int main() {
int gcnew = 0; // C2147
int i = 0; // OK
}