Polymorphism
A language to be an object-oriented requires 4 elements: Polymorphism is one of them.can anyone tell me what exactly polymorphism? Thank You!!!!
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.
Posted Jan 25, 2012, 2:15 PM
Jessica StephenPosted Dec 9, 2011, 5:54 AM
Datta KharadPosted Dec 8, 2011, 9:18 AM
You can refer this link....
http://www.c-sharpcorner.com/Forums/Thread/151040/oops-concepts.aspx
Satyapriya NayakPosted Dec 8, 2011, 6:41 AM
Polymorphism: It is a feature that allows one interface to be used for general class of actions. The specific action is determined by the exact nature of the situation. In general polymorphism means "one interface, multiple methods", This means that it is possible to design a generic interface to a group of related activities. This helps reduce complexity by allowing the same interface to be used to specify a general class of action. It is the compiler's job to select the specific action (that is, method) as it applies to each situation.
Refer
http://www.csharp-station.com/Tutorials/lesson09.aspx
Thanks
VulpesPosted Dec 8, 2011, 5:44 AM