Release and debug question

  • Thread starter Thread starter Davef
  • Start date Start date
D

Davef

When you put you code in release, does all the code behind get compiled into
a dll,
 
Yes. The only difference is that the debugging symbols are not included in
the release version.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
http://www.takempis.com
Complex things are made up of
lots of simple things.
 
Dave,

I'm no expert and still learning, but I think that debug or release place
all code behind files and other appropriate items in a dll that goes in your
bin folder.
The Aspx files still go to the webserver too.

The difference being that debug--puts a lot of debug code and symbols in the
dll and release doesn't
Debug is good for debugging but with all that extra stuff very bad in
production.

Imagine you place a bunch of code in a program that printed all sorts of
information while you were debugging... This would run slower than if it
weren't there and you don't need it in a release app.

The concept is similar although more involved.

HTH

Shane
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top