Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How method overloading is considerd as a static polymorphism in c#?

share|improve this question
3  
Is that a question for school? Please elaborate. – Josh M. Mar 26 '11 at 14:31

1 Answer

up vote 5 down vote accepted

According to google (if you type in "define static polymorphism"):

Polymorphism implemented at compile-time; generics.

At compile time it is known exactly which overload to call (based on arguments). If compiler cannot determine this, it generates an error.

The only exception is the dynamic keyword.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.