善用DEBUG狀態下才執行的程式碼來做開發偵錯
在Web.config裡頭定義
<compilation debug="true" targetFramework="4.5" />
在程式碼裡面用
#if DEBUG
#endif
或是
if (HttpContext.Current.IsDebuggingEnabled)
{
}
from:http://blog.miniasp.com/post/2009/09/16/How-to-utilize-Debug-mode-to-develop-aspnet-and-other-net-applications.aspx
http://www.dotnetperls.com/isdebuggingenabled
0 意見:
張貼留言