編譯器錯誤 CS0547
更新:2007 年 11 月
錯誤訊息
'property': 屬性或索引子不能有 void 型別
void 是無效的屬性 (Property) 傳回值。
如需詳細資訊,請參閱屬性。
下列範例會產生 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()
{
}
}