Currently, I use the App_Code folder for all my classes, and for me (at the moment) it works fine.
However, I was considering switching to a class library project inside my solution instead of the App_Code folder. Can someone tell me the pros and cons of this?
One thought I had was about testing my web application. If I use a class library, do I need to compile it every time I want to configure / check? Obviously, I do not need the App_Code folder, since all classes are compiled at runtime.
source
share