編譯器錯誤 CS0272
此內容中不能使用屬性或索引子 'property/indexer',因為無法存取 set 存取子。
當程式碼無法存取 set
存取子時,就會發生這個錯誤。
提高存取子的可存取性,或變更呼叫位置。 如需詳細資訊,請參閱限制存取子的存取範圍。
下列範例會產生 CS0272:
C#
// CS0272.cs
public class MyClass
{
public int Property
{
get { return 0; }
private set { }
}
}
public class Test
{
static void Main()
{
MyClass c = new MyClass();
c.Property = 10; // CS0272
// To resolve, remove the previous line
// or use an appropriate modifier on the set accessor.
}
}