Stories recently tagged with 'Debug'

IE Developer Toolbar Beta 3... What?(weblogs.asp.net)

submitted by PluginbabyPluginbaby(1190) 5 years, 4 months ago

I've just noticed that a new beta version of the Internet Explorer Developer Toolbar is available! Not yet final but I like this Web Developer tool. Despite of all the cool things in it I advise people NOT to install this version as it is far for stable and some features simply crash. read more...

2 comments |category: |Views: 4

tags: another

Do not change program semantics in the debug build(blogs.msdn.com)

submitted by dalzieldalziel(6230) 5 years, 9 months ago

What you don't want is a problem that goes away when you debug it. It is expected that a program have additional debugging code inside #iff DEBUG blocks. After all, that's why it's a debug build. But what you definitely don't want to do is have that debugging to fundamentally change the program's behavior. You can perform additional validation. You can raise assertion failures. You can track resources. It can be slower and consume additional resources, but you had better not alter code flow. read more...

add a comment |category: |Views: 2

tags: another