使用英语阅读

通过


编译器错误 CS1545

属性、索引器或事件“property”不受现用语言支持;请尝试直接调用访问器方法“set accessor”或“get accessor”

该代码正在使用具有非默认 索引器 的对象并试图使用索引的语法。 若要解决此错误,请调用该属性的 getset 访问器方法。

示例 1

C++
// 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) {}  
   }  
};  

示例 2

下面的示例生成 CS1545:

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