The short answer is I don't know. But why dont you try looping over 1
million times doing Console.Writeline and see how long it takes. If it
takes 1 second or less (dont run it under debug mode) then theres really
no point going round commenting out all the references in your code.
Instead, why not define a DEBUG symbol and only include it in debug
builds. eg
#if DEBUG
Console.Writeline("This is a debug only statement");
--
Wal
http://www.vooose.com
*** Sent via Developersdex
http://www.developersdex.com ***