"Hidden Secrets" of the Visual Studio .NET debugger? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T02:47:53Z http://stackoverflow.com/feeds/question/131263 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/131263/hidden-secrets-of-the-visual-studio-net-debugger 12 "Hidden Secrets" of the Visual Studio .NET debugger? spoon16 2008-09-25T03:06:32Z 2009-06-19T12:28:33Z <p>As much as I generally don't like the discussion/subjective posts on SO, I have really come to appreciate the "Hidden Secrets" set of posts that people have put together. They provide a great overview of some commonly missed tools that you might now otherwise discover.</p> <p>For this question I would like to explore the Visual Studio .NET debugger. What are some of the "hidden secrets" in the VS.NET debugger that you use often or recently discovered and wish you would have known long ago?</p> http://stackoverflow.com/questions/131263/hidden-secrets-of-the-visual-studio-net-debugger/131265#131265 5 Answer by spoon16 for "Hidden Secrets" of the Visual Studio .NET debugger? spoon16 2008-09-25T03:07:21Z 2008-09-25T03:07:21Z <p><code>$exception</code> in the watch window will show the exception that is currently being processed even if you don't have a catch that assign the <code>Exception</code> instance to a named variable.</p> http://stackoverflow.com/questions/131263/hidden-secrets-of-the-visual-studio-net-debugger/131268#131268 2 Answer by spoon16 for "Hidden Secrets" of the Visual Studio .NET debugger? spoon16 2008-09-25T03:08:43Z 2008-09-25T03:08:43Z <p>Some useful shortcut keys.</p> <ul> <li><code>F11</code> to step into a method.</li> <li><code>Shift-F11</code> to step out of a method.</li> <li><code>F10</code> to step over a method.</li> </ul> http://stackoverflow.com/questions/131263/hidden-secrets-of-the-visual-studio-net-debugger/131273#131273 5 Answer by Alexander Kojevnikov for "Hidden Secrets" of the Visual Studio .NET debugger? Alexander Kojevnikov 2008-09-25T03:11:10Z 2008-09-25T03:11:10Z <p><a href="http://support.microsoft.com/kb/308469" rel="nofollow">Conditional breakpoints</a>.</p> http://stackoverflow.com/questions/131263/hidden-secrets-of-the-visual-studio-net-debugger/131279#131279 6 Answer by Dan Herbert for "Hidden Secrets" of the Visual Studio .NET debugger? Dan Herbert 2008-09-25T03:12:51Z 2008-09-25T03:12:51Z <p>As a web developer who works with Web Services that are within the same solution as my front-end code most of the time, I found the ability to <a href="http://msdn.microsoft.com/en-us/library/c6wf8e4z.aspx" rel="nofollow">"attach" to a process</a> to be a HUGE time saver.</p> <p>Before I found this hidden gem, I would always have to set a breakpoint on some front-end code that called a web service method and step into it. Now that I know about this trick/feature I can easily set breakpoints on any part of my code that I want to which saves me loads of time and effort.</p> http://stackoverflow.com/questions/131263/hidden-secrets-of-the-visual-studio-net-debugger/131283#131283 4 Answer by 1800 INFORMATION for "Hidden Secrets" of the Visual Studio .NET debugger? 1800 INFORMATION 2008-09-25T03:13:38Z 2008-09-25T03:13:38Z <p>This is kind of an old one. If you add a watch expression <code>err,hr</code>, then this will hold the result of GetLastError(), formatted as an HRESULT (VC++ debugger only).</p> http://stackoverflow.com/questions/131263/hidden-secrets-of-the-visual-studio-net-debugger/131285#131285 10 Answer by Jeff Hillman for "Hidden Secrets" of the Visual Studio .NET debugger? Jeff Hillman 2008-09-25T03:14:21Z 2008-09-25T03:28:20Z <p>One of my favorite features is the <a href="http://msdn.microsoft.com/en-us/library/232dxah7(VS.80).aspx" rel="nofollow">"When Hit..."</a> option available on a breakpoint. You can print a message with the value of a variable along with lots of other information, such as:</p> <ul> <li>$ADDRESS - Current Instruction</li> <li>$CALLER - Previous Function Name</li> <li>$CALLSTACK - Call Stack</li> <li>$FUNCTION - Current Function Name</li> <li>$PID - Process ID</li> <li>$PNAME - Process Name</li> <li>$TID - Thread ID</li> <li>$TNAME - Thread Name</li> </ul> <p>You can also have it run a macro, but I've never used that feature.</p> http://stackoverflow.com/questions/131263/hidden-secrets-of-the-visual-studio-net-debugger/131290#131290 3 Answer by 1800 INFORMATION for "Hidden Secrets" of the Visual Studio .NET debugger? 1800 INFORMATION 2008-09-25T03:15:21Z 2008-09-25T03:15:21Z <p>You can load windbg extensions into the Visual Studio debugger and use them from the immediate window.</p> http://stackoverflow.com/questions/131263/hidden-secrets-of-the-visual-studio-net-debugger/131345#131345 10 Answer by Luke Quinane for "Hidden Secrets" of the Visual Studio .NET debugger? Luke Quinane 2008-09-25T03:31:55Z 2008-09-25T03:31:55Z <p>For .net applications System.Diagnostics has lots of useful debugging things. The Debugger class for example:</p> <pre><code>Debugger.Break(); // Programmatically set a break point Debugger.Launch(); // Launch the debugger if not already attached Debugger.IsAttached // Check if the debugger is attached </code></pre> <p>System.Diagnositcs also has lots of good attributes. The two I've used are the debugger display attribute for changing the details put into the locals window and the step through attribute for skipping code you don't care about debugging:</p> <pre><code>// Displays the value of Property1 for any "MyClass" instance in the debugger [DebuggerDisplay("{Property1}")] public class MyClass { public string Property1 { get; set; } [DebuggerStepThrough] public void DontStepInto() { // An action we don't want to debug } } </code></pre> http://stackoverflow.com/questions/131263/hidden-secrets-of-the-visual-studio-net-debugger/131365#131365 4 Answer by Slace for "Hidden Secrets" of the Visual Studio .NET debugger? Slace 2008-09-25T03:38:35Z 2008-09-25T03:38:35Z <p>As posted in another post Sara Ford is doing a current series on the VS debugger.</p> <p>Her blog is the best source of VS tips: <a href="http://blogs.msdn.com/saraford/archive/tags/Visual+Studio+2008+Tip+of+the+Day/default.aspx" rel="nofollow">http://blogs.msdn.com/saraford/archive/tags/Visual+Studio+2008+Tip+of+the+Day/default.aspx</a></p> http://stackoverflow.com/questions/131263/hidden-secrets-of-the-visual-studio-net-debugger/818984#818984 4 Answer by Andomar for "Hidden Secrets" of the Visual Studio .NET debugger? Andomar 2009-05-04T06:25:48Z 2009-05-04T06:25:48Z <ul> <li>The threads window, from Debug -> Windows -> Threads. You can Freeze and Thaw threads, and switch the active thread. This is awesome when debugging or replicating an issue with a multithreading application.</li> <li>You can drag &amp; drop the yellow "Next Statement" arrow to another place. When the program resumes, it will resume execution at that statement. You can add it to the toolbar, a blue arrow called Set Next Statement, but it's not there by default.</li> <li>You can "undo" the navigation you did, like scrolling, going to another file, or jumping to a reference. The shortcut is ctrl-- (control minus.) That way you can jump into a function, examine the code there, and go back to where you were without looking.</li> </ul> http://stackoverflow.com/questions/131263/hidden-secrets-of-the-visual-studio-net-debugger/1017567#1017567 6 Answer by SLaks for "Hidden Secrets" of the Visual Studio .NET debugger? SLaks 2009-06-19T11:59:13Z 2009-06-19T11:59:13Z <p>You can right-click an object in the Watch window and click Make Object ID.</p> <p>It will assign that instance an ID number, allowing you to see, in a complicated object graph, which objects refer to the same instance.</p> http://stackoverflow.com/questions/131263/hidden-secrets-of-the-visual-studio-net-debugger/1017649#1017649 0 Answer by rally25rs for "Hidden Secrets" of the Visual Studio .NET debugger? rally25rs 2009-06-19T12:18:05Z 2009-06-19T12:28:33Z <p>Things I use often:</p> <ul> <li><p>Click the menu item "Debug | Exceptions" (or Ctrl-D, E for short) and you can enable breaking at the time that any exception is thrown, or choose to not break on certain exceptions.</p></li> <li><p>You can set up the debugger to download some of the framework source code and symbols from a MS server and step into the framework code. (Some libraries, like System.ServiceModel, are not yet available). It in the Options windows under Debugging. See <a href="http://msdn.microsoft.com/en-us/library/b8ttk8zy.aspx" rel="nofollow">MSDN How-To</a>.</p></li> <li><p>You can use the VS.NET debugger to debug Javascript running in IE. You just need to install the IE javascript debugger, and enable javascript debugging in IE's settings. Then on a JS error it will pop up a "do you want to debug" dialog box, and you can choose to debug in VS.NET.</p></li> </ul>