Advertencia del compilador (nivel 4) C4400
"type": no se admiten los calificadores const/volatile en este tipo
Los calificadores const y volatile no funcionarán con variables de tipos de Common Language Runtime.
Ejemplo
El ejemplo siguiente genera el error C4400.
// 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
}