If i have an accessor and default property in a base class as follows:
class base{
protected int _foo = 5;
public int foo {get{return _foo;}set{_foo = value;}}
}
Then I derive this class, is it possible to override the default value of _foo?
class derived:base{
// foo still returns 5?
protected new int _foo = 10;
}