Leggere in inglese

Condividi tramite


Errore del compilatore CS1545

La proprietà, l'indicizzatore o l'evento 'property' non è supportato dal linguaggio. Provare a chiamare direttamente il metodo 'set accessor' o 'get accessor' della funzione di accesso

Il codice usa un oggetto con un indicizzatore non predefinito e ha provato a usare la sintassi indicizzata. Per risolvere l'errore, chiamare il metodo della funzione di accesso get o set della proprietà.

Esempio 1

// CPP1545.cpp  
// compile with: /clr /LD  
// a Visual C++ program  
using namespace System;  
public ref struct Employee {  
   Employee( String^ s, int d ) {}  
  
   property String^ name {  
      String^ get() {  
         return nullptr;  
      }  
   }  
};  
  
public ref struct Manager {  
   property Employee^ Report [String^] {  
      Employee^ get(String^ s) {  
         return nullptr;  
      }  
  
      void set(String^ s, Employee^ e) {}  
   }  
};  

Esempio 2

L'esempio seguente genera l'errore CS1545.

// CS1545.cs  
// compile with: /r:CPP1545.dll  
  
class x {  
   public static void Main() {  
      Manager Ed = new Manager();  
      Employee Bob = new Employee("Bob Smith", 12);  
      Ed.Report[ Bob.name ] = Bob;   // CS1545  
      Ed.set_Report( Bob.name, Bob);   // OK  
   }  
}