When Should i Use Method overloading in real time development,please suggest some links.
When Should i Use Method overloading in real time development,please suggest some links.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Overloading is used (recommended) when multiple methods have the same purpose but there is more than one way to start it.
So we rather have
than
or
The last example could also be done using (C#4) optional parameters.
Another good candidate for overloading: