Compilerfehler C3164

'Member': Kopierkonstruktor und Konstruktoren für Werttypen werden nicht unterstützt.

Kopierkonstruktoren und Destruktoren werden für __value-Typen nicht unterstützt.

C3164 ist nur mit /clr:oldSyntax erreichbar.

Im folgenden Beispiel wird C3164 generiert:

// C3164.cpp
// compile with: /clr:oldSyntax /c
__value class MyClass {
public:
   ~MyClass();   // C3164
   MyClass(const MyClass& f);   // C3164
};