Stories recently tagged with 'Debugger'

Is your debugger making you stupid?(blog.decayingcode.com)

submitted by arch4ngelarch4ngel(585) 2 years, 10 months ago

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. Previously, debugger were hardly as powerful as Visual Studio. And that is the problem. read more...

add a comment |category: |Views: 8

tags: another

C# Debugging Improvement for VS 2008 SP1- Part II(blogs.msdn.com)

submitted by SreekarSreekar(200) 3 years, 11 months ago

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 read more...

add a comment |category: |Views: 27

tags: another

DebuggerNonUserCode: Suppressing ignorable exceptions in the debugger(blog.functionalfun.net)

submitted by samuel_d_jacksamuel_d_jack(415) 4 years ago

Shows how to apply the DebuggerNonUserCode attribute so that the debugger doesn't break in methods that catch and handle exceptions. read more...

add a comment |category: |Views: 32

tags: another