views:

168

answers:

1

I know I check it programmatically from

 ConfigurationSection configSection =
      (CompilationSection) ConfigurationManager.GetSection( "system.web/compilation" );

I know that it is also somewhat slower to have in production ... yet if we are in a kind of beta it does not harm yet ...

A: 

Yes, it's available both in Debug and Release builds but it'll include more data (such as source line numbers) if you have the PDB in debug mode.

Mehrdad Afshari