---
title: "How is method overriding different from method overloading?"  
description: "How is method overriding different from method overloading?"  
author: "Sumit Kesarwani"  
published: 2014-08-27  
updated: 2020-09-18  
canonical: https://www.mindstick.com/interview/2053/how-is-method-overriding-different-from-method-overloading  
category: "c#"  
tags: ["c#"]  
reading_time: 1 minute  

---

# How is method overriding different from method overloading?

Overriding involves the creation of two or more methods with the same name and same signature in different classes (one of them should be parent class and other should be child).

Overloading is a concept of using a method at different places with same name and different signatures within the same class.

## Answers

### Answer by Sumit Kesarwani

Overriding involves the creation of two or more methods with the same name and same signature in different classes (one of them should be parent class and other should be child).

Overloading is a concept of using a method at different places with same name and different signatures within the same class.


---

Original Source: https://www.mindstick.com/interview/2053/how-is-method-overriding-different-from-method-overloading

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
