I use a lot of lines like that
Console.WriteLine("Test");
to debug application under VS 2010.
My question is: Have I do comment all those lines when I build an application?
Thanks!
|
Yes. In fact, if your app was a console application, you'd really want those lines executed. Have a look at More generally, you can have code that's only compiled in a Debug build by doing:
You can also put this attribute before your method definition to write a method that's not called at all when you do a Release build:
All these methods have the advantage that they shouldn't affect the performance of production code. To check I'm giving you accurate advice, I compiled the following in Release mode:
I then used the IL Dissasembler tool to see what will actually run:
As you can see, only the Console.WriteLine method is called. The other three alternatives are, as we had hoped, 'compiled out' of the debug code. The Debug version looks like this:
|
|||||||||||||||
|
|
Yes, all your Instead of Benefits of logging frameworks over Console.WriteLine
|
||||
|
|
|
|||
|
|
|
What type of application is it? In console apps, that's the way to output to the screen. In any case, the answer is yes - it will still be executed. Whether or not there's anything attached to the console is another question. You may want to look at |
|||
|
|
#if debug, making sure to switch between Debug and Release while compiling - msdn.microsoft.com/en-us/library/4y6tbswk.aspx – JMK Jul 4 '12 at 17:45