关于protected在子类中的问题
请教:
在子类中为什么不能引用父类中protected的变量
代码如下:
Class Myclass
{
proteced string prostring = "protecedstring";
}
Class Mainclass:Myclass
{
static void Main(string[] args)
{
Myclass test = new Myclass();
test.prostring;
}
}
问一下上面花横线的语句为什么不对?谢谢了!