How to Use Visual Studio Performance Analyzers against Unit Tests
Having a nice set of automated tests in your project has lots of well publicized advantages. However, if you want to use the tests to help analyze a performance issue you get stuck with a simple...
View ArticleHow to stop the CLR optimizing your variables during a debug session
Finally decided to see if there was something I could do to stop the CLR optimizing away all the variables when I want to remote debug an application. This seems to have the answer,...
View ArticleRemote debugging – value as being optimized
Surley one of the most annoying problems with remote debugging is after finally getting a connection, the correct pdb’s, the correct source and a breakpoint hit you examing the values to be faced with...
View ArticleDebugging when classic ASP calls into .net
Breakpoints not firing when called from COM+? A collegue was having trouble debugging some .net code that was called from classic ASP code. After getting over the initial problems of making sure that...
View ArticleRemote Debugging using Visual Studio 2003
I got into one of those situations when I need to debug a bit of software of a server but I couldn’t install Visual Studio. So for the first time I stepped into the world of remote debugging. It was...
View Article