How can we restrict the class variable to not to inherit or change the value in derived class?
ex-
Class A
{
public string name="ABC";
}
Class B:A
{
//I don't want here name property of base class should be accessible
or can be changed
}