Errore del compilatore C3291
'default': non può essere il nome di una proprietà semplice
Una proprietà trivial non può essere denominata default
. Per altre informazioni, vedere property .
Esempio
L'esempio seguente genera l'errore C3291.
// C3291.cpp
// compile with: /clr /c
ref struct C {
property System::String ^ default; // C3291
property System::String ^ Default; // OK
};