How method overloading is considerd as a static polymorphism in c#?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
According to google (if you type in "define static polymorphism"):
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. |
|||
|
|