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?
+7
A:
Overloading has no impact on performance; it's resolved by the compiler at compile-time.
As for design guidance, see the design guidelines:
Brian
2010-08-27 06:13:51
great! just need a compromise between code readability and code usability..
Raze2dust
2010-08-28 10:38:00
+2
A:
- 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.
PieterG
2010-08-27 06:15:08
+5
A:
If you're using C# 4.0 you can save your fingers some work and use optional parameters.
Andy Gaskell
2010-08-27 06:18:23