Erro C2582 do Compilador
A função 'function' não está disponível em 'type'
Foi feita uma tentativa de atribuição a um objeto que não tem um operador de atribuição.
A seguinte amostra gera 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
}