使用英语阅读

通过


编译器错误 CS0547

“property”:属性或索引器不能具有 void 类型

void 作为属性的返回值无效。

有关详细信息,请参阅 属性

以下示例生成 CS0547:

// CS0547.cs  
public class a  
{  
   public void i   // CS0547  
   // Try the following declaration instead:  
   // public int i  
   {  
      get  
      {  
         return 0;  
      }  
   }  
}  
  
public class b : a  
{  
   public static void Main()  
   {  
   }  
}