Polymorphism
Can any one explain about polymorphism concept in detail?
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.
Jignesh TrivediPosted Apr 16, 2014, 7:01 AM
Polymorphism is a generic term that means 'many forms' it means one object having multiple forms
two types of polymorphism
1.Static or compile time polymorphism (the decision is made at compile time)
example: function/Method overloading
2.Dynamic or runtime polymorphism (the decision is made at run time)
example: function/Method overriding
Please refer
http://msdn.microsoft.com/en-us/library/ms173152.aspx
hope this will help you.