Welcome to MSDN Blogs Sign in | Join | Help

January 2005 - Posts

Report exceptions, don't ignore them!
Here is a great example of code that you should never write: __try { RunCode(); } __except (EXCEPTION_EXECUTE_HANDLER) { }; Or, here is the only somewhat less evil managed equivalent: try { RunCode(); } catch { } I know why programmers do it: 'RunCode' Read More...
Clearing up confusion over the proposed crashdump cut
Clearing up confusion over the proposed crashdump cut. As I posted in my last blog, Scott is soliciting feedback about a proposal to cut support for an old dump format. There has been some confusion over this, so I wanted to throw in my two cents. Crashdumps Read More...
Are you using the old crashdump format?
If you are still using the old crashdump format, let Scott know – we are thinking of cutting support for it... Read More...
Page view tracker