Aracılığıyla paylaş


Derleyici Hatası C2582

'function' işlevi 'type' içinde kullanılamıyor

Açıklamalar

Atama işleci olmayan bir nesneye atama girişiminde bulunuldu.

Örnek

Aşağıdaki örnek C2582 oluşturur:

// 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
}