Compilerwarnung (Ebene 4) C4400
'type' : const/volatile qualifizierer für diesen Typ werden nicht unterstützt.
Die veränderlichenQualifizierer funktionieren nicht mit Variablen von Common Language Runtime-Typen.
Beispiel
Im folgenden Beispiel wird C4400 generiert.
// C4400.cpp
// compile with: /clr /W4
// C4401 expected
using namespace System;
#pragma warning (disable : 4101)
int main() {
const String^ str; // C4400
volatile String^ str2; // C4400
}