我有一个这样的类结构:
public class PingtreeReq : ProviderRequest
{
// I want to use _residentialService here!
}
public class ProviderRequest
{
// Should this be a variable or property?
protected Dictionary<int, string> _residentialSerice;
}
如果我想使用 MyLenderRequest 中的这个变量,使用属性是否更合适,或者像这样访问它作为受保护的变量是否足够?