使用英语阅读

通过


编译器错误 CS1043

应为 { 或 ;

未正确声明属性访问器。 有关详细信息,请参阅使用属性

示例

下面的示例生成 CS1043。

// CS1043.cs  
// compile with: /target:library  
public class MyClass  
{  
   public int DoSomething  
   {  
      get return 1;   // CS1043  
      set {}  
   }  
  
   // OK  
   public int DoSomething2  
   {  
      get { return 1;}  
   }  
}