I like to overload methods to support more and more default cases. What is the performance impact of method overloading? From your experience, is it advisable to overload methods? What is the limit? What are the workarounds?
Overloading has no impact on performance; it's resolved by the compiler at compile-time.
As for design guidance, see the design guidelines:
If you're using C# 4.0 you can save your fingers some work and use optional parameters.
- Performance impact, as far as I know, it's like defining a new method. The performance impact is space on your harddrive.
- Advisable to overload methods, Definitely, it's provides convenience
- What is the limit, As much Harddrive space as you have.
来源:https://stackoverflow.com/questions/3581747/method-overloading-good-or-bad-design