หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
'directive': expected "FILENAME" or <FILENAME>
Remarks
Directives such as #include or #import require a filename. To resolve the error, ensure the filename is valid and enclosed in either double quotes or angle brackets.
Example
The following example generates C2006:
// C2006.cpp
// compile with: /c
#include iostream // C2006
#include 'iostream' // C2006
#include <iostream> // OK