为什么C#编译器不允许接口中的私有属性设置器?

时间:2011-10-14 11:35:56

标签: c# compiler-construction interface properties setter

在某些情况下,比如MVVM视图模型,我有时需要私有setter,因为视图模型公开了一个只能在内部修改的状态。

在接口上需要私有的setter是错误的吗? (我的意思不是特别在所描述的场景中)如果没有,为什么C#编译器不允许它?

感谢。

1 个答案:

答案 0 :(得分:54)

根据定义,接口是其他代码使用的合同,而不是私有成员的合同。但是,您可以在接口中指定只读属性,并在具体类中实现私有setter:

public interface IFoo
{
    string MyReadonlyString { get; }
} 

public class FooImplementation : IFoo
{
    public string MyReadonlyString { get; private set; }
}