In a console app I want to output at the end this:
Console.WriteLine("Finished Analyze with duration: " + watch.Elapsed);
Are there any side effects in using the Stopwatch class, when the assembly is build in the release mode?
Or is Stopwatch really only for debugging purposes?