---
title: "Can you override private virtual method?"  
description: "Can you override private virtual method?"  
author: "Anonymous User"  
published: 2015-05-30  
updated: 2020-09-19  
canonical: https://www.mindstick.com/interview/2600/can-you-override-private-virtual-method  
category: ".net"  
tags: ["c#", "oops"]  
reading_time: 1 minute  

---

# Can you override private virtual method?

No, moreover, you cannot access private methods in inherited classes, have to be protected in the base class to allow any sort of access.

## Answers

### Answer by Anonymous User

No, moreover, you cannot access private methods in inherited classes, have to be protected in the base class to allow any sort of access.


---

Original Source: https://www.mindstick.com/interview/2600/can-you-override-private-virtual-method

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
