共用方式為


編譯器警告 (層級 1) C4097

pragma 參數必須為 'restore' 或 'off'

傳遞的 pragma 具有無效的值。

下列範例會產生 C4097:

// C4097.cpp
// compile with: /W1
#pragma runtime_checks("",test)   // C4097
// try the following line instead
// #pragma runtime_checks("",off)

int main() {
}