閱讀英文

共用方式為


編譯器錯誤 CS0547

'property': 屬性或索引子不能有 void 類型

當做屬性傳回值的void 無效。

如需詳細資訊,請參閱 屬性中定義的介面的私用 C++ 專屬實作。

下列範例會產生 CS0547:

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