标签: c# oop
在C#中,我希望将基类数据契约设置为只读类,并且基类的直接访问不应该只读。
答案 0 :(得分:2)
你可以通过在基类中设置setter私有来实现这一点,getter受保护(或者根据需要公开):
protected properytype propertyname { get; private set; }