0

After reading this article, it seems to me that overriding is a type of polymorphism, at least in C# programming.(Not speaking of java but about general programming)

Is this correct?

John Slegers
  • 45,213
  • 22
  • 199
  • 169
Joe
  • 173
  • 1
  • 2
  • 9
  • 1
    Yes, it's a type of polymorphism (runtime polymorphism) if you are talking about C#. – Rahul Sep 25 '15 at 23:00
  • possible duplicate of [Polymorphism vs Overriding vs Overloading](http://stackoverflow.com/questions/154577/polymorphism-vs-overriding-vs-overloading) and/or [Is Polymorphism , Overloading and Overriding are same concepts?](http://stackoverflow.com/q/12893907/3425536) – Emil Laine Sep 25 '15 at 23:00
  • @zenith, unless OP clarifies which language he is targeting, the linked post it's a duplicate since it's targeting for Java. – Rahul Sep 25 '15 at 23:01

1 Answers1

2

Polymorphism can be achieved by using two ways.

Those are :

John Slegers
  • 45,213
  • 22
  • 199
  • 169