By tag: Debugger
0
kicks
Is your debugger making you stupid?
What is one of the greatest advance of Visual Studio since the coming of .NET? You might think it is the Garbage Collector or the IL which allows interoperability between languages? I think of one the great advance of Visual Studio 2003 (all the way through Visual Studio 2010) is the debugger. Previ...
0
kicks
C# Debugging Improvement for VS 2008 SP1- Part II
On Further review there are a few problems with anonymous-types, they all boil down to the fact the names given to these types are not valid C# type names ( so that users don't explicitly use them in code). But while debugging this is exactly the kind of thing that one wants to do
0
kicks
DebuggerNonUserCode: Suppressing ignorable exceptions in the debugger
Shows how to apply the DebuggerNonUserCode attribute so that the debugger doesn't break in methods that catch and handle exceptions.