Erreur du compilateur C2582
La fonction 'function' n’est pas disponible dans 'type'
Une tentative d’affectation a été effectuée à un objet qui n’a pas d’opérateur d’affectation.
L’exemple suivant génère l’erreur C2582 :
// C2582.cpp
// compile with: /clr
using namespace System;
struct N {};
ref struct O {};
ref struct R {
property O prop; // C2582
property O ^ prop2; // OK
};
int main() {
String ^ st1 = gcnew String("");
^st1 = gcnew String(""); // C2582
st1 = "xxx"; // OK
}