Overloading and overriding
What is difference between overloading and overriding? Please explain with example.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Rajeesh MenothPosted May 6, 2015, 4:49 AM
In Polymorphism we have 2 different types.
1) Overloading
2) Overriding
Explanation with Examples : http://stackoverflow.com/questions/673721/overloading-and-overriding
Abrar Ahmad AnsariPosted May 6, 2015, 3:00 AM
http://www.aspdotnet-suresh.com/2013/09/c-sharp-overloading-and-overriding-differences-with-example.html
http://www.dotnetfunda.com/articles/show/2971/polymorphism-method-overloading-and-overriding-in-csharp
Tom MohanPosted May 6, 2015, 2:41 AM
Overloading
Overloading is when you have multiple methods in the same scope, with the same name but different signatures.
Overriding
Overriding is a principle that allows you to change the functionality of a method in a child class.