C# 的接口中,是可以设置属性的,比如:
public interface IOperator{
int UserId { get; set; }
}
但是,我希望类中的 set 是 protected 的,怎么办呢?
public interface IOperator{
// int UserId { get; protected set; } // 错误的做法,不允许指定 protected
int UserId { get; } // 正确的做法
}
正确的做法是,不要写 set,这样在类中,你爱怎么写就怎么写。
标签:set,get,C#,UserId,int,protected From: https://www.cnblogs.com/qinweizhi/p/16739877.html