'directive': 必須是 “FILENAME” 或 <FILENAME>
Remarks
#include 或 #import 等指示詞需要檔名。 若要解決錯誤,請確定檔名有效,並以雙引號或角括弧括住。
Example
下列範例會產生 C2006:
// C2006.cpp
// compile with: /c
#include iostream // C2006
#include 'iostream' // C2006
#include <iostream> // OK