Condividi tramite


Errore del compilatore C3698

'type': impossibile usare questo tipo come argomento di 'operator'

Un oggetto gestito è stato dichiarato in modo non corretto.

L'esempio seguente genera l'errore C3698:

// C3698.cpp
// compile with: /clr

int main() {
   array<int>^a = new array<int>^(20);   // C3698
   array<int>^a2 = gcnew array<int>(20);   // OK
}