Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
'function' function is unavailable in 'type'
An attempt was made to assign to an object that does not have an assignment operator.
The following sample generates 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
}