หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
mismatched #if/#endif pair in file 'filename'
Remarks
An #if, #ifdef, or #ifndef directive has no corresponding #endif.
Example
The following example generates C1070:
// C1070.cpp
#define TEST
#ifdef TEST
#ifdef TEST
#endif
// C1070
Possible resolution:
// C1070b.cpp
// compile with: /c
#define TEST
#ifdef TEST
#endif
#ifdef TEST
#endif