Can private virtual methods be overridden in C#.NET? - No, moreover, you cannot access private methods in inherited classes. - They have to be protected in the base class to allow any sort of access. Can you override private virtual methods?First of all private methods in the inherited class can't be accessed, so there is no question of overriding of private virtual methods.
|