Yes method calls slow down the code execution a tiny little bit, if they a not inlined by the c#-compiler or the jit-compiler. However, unless your code runs in a loop and is executed a million times or so, you should really focus on producing clean, understandable and maintainable code. When I started with programming the execution times for single statements where measured in milli- or microseconds. Today they are measured in nanoseconds. Time usually is mainly wasted for I/O operations. Bad algorithms can also be blamed some times. If your design is cleanly structured, it will be much easier to replace a poorly performing code-part by a better one, compared to a code that was time-optimized from the beginning and therefore probably badly structured.
I experienced that recently. I had to produce a complicated graphic in Visio in a c# program. It turned out that Visio-automation was very slow. It took minutes to create the graphic. Fortunately, I had put all the graphics stuff in a component, which exposed graphics commands through a product neutral interface. I.e.: the interface did not contain any Visio specific stuff. It was very easy to replace my Visio component by a new SVG component, which did the same task in less than a second. In addition, absolutely no changes had to be made in my algorithms or in any other part of my program.
Of cause, my graphics wrapper component adds more method calls. In addition, it is accessed via an interface, which slows down the whole thing even more. However, in the end, it was this interface and these extra method calls, which allowed me to implement a much faster solution. Remember: minutes versus less than one second!
Console.Writelineinside it, and you want to know if the function call slows it down? You need a sense of perspective. You're talking about something that takes maybe 186 light-miles, with maybe 1 light-foot going into the function call. – Mike Dunlavey Dec 7 '11 at 18:42