<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Did you know… You can break the debugger without using Breakpoints? - #313</title><link>http://blogs.msdn.com/saraford/archive/2008/09/15/did-you-know-you-can-break-the-debugger-without-using-breakpoints-313.aspx</link><description>If you are using VB, you can add the keyword Stop in your code to suspend execution. The Stop statement is the equivalent to adding a breakpoint. Sometimes it is just faster to type “Stop” than it is to remember to hit F9 or reach for the mouse. If you</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>re: Did you know… You can break the debugger without using Breakpoints? - #313</title><link>http://blogs.msdn.com/saraford/archive/2008/09/15/did-you-know-you-can-break-the-debugger-without-using-breakpoints-313.aspx#8952452</link><pubDate>Mon, 15 Sep 2008 15:01:23 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8952452</guid><dc:creator>Rory Primrose</dc:creator><description>&lt;p&gt;I found Debugger.Break() really helpful when I needed to debug a Windows Service application as it was starting up. Sometimes it was too late to start the service then attach the debugger.&lt;/p&gt;</description></item><item><title>re: Did you know… You can break the debugger without using Breakpoints? - #313</title><link>http://blogs.msdn.com/saraford/archive/2008/09/15/did-you-know-you-can-break-the-debugger-without-using-breakpoints-313.aspx#8952593</link><pubDate>Mon, 15 Sep 2008 17:18:02 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8952593</guid><dc:creator>santiiiii</dc:creator><description>&lt;p&gt;You can also break with &amp;quot;debugger&amp;quot; in javascript.&lt;/p&gt;</description></item><item><title>re: Did you know… You can break the debugger without using Breakpoints? - #313</title><link>http://blogs.msdn.com/saraford/archive/2008/09/15/did-you-know-you-can-break-the-debugger-without-using-breakpoints-313.aspx#8952943</link><pubDate>Mon, 15 Sep 2008 21:12:25 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8952943</guid><dc:creator>GregM</dc:creator><description>&lt;p&gt;In C++, it's _CrtDbgBreak() (_DEBUG only), or DebugBreak(), or _asm { INT 3 } (x86 only).&lt;/p&gt;
&lt;p&gt;Rory, see also Image File Execution Options (&lt;a rel="nofollow" target="_new" href="http://blogs.msdn.com/greggm/archive/2005/02/21/377663.aspx"&gt;http://blogs.msdn.com/greggm/archive/2005/02/21/377663.aspx&lt;/a&gt; for example) (no, that's not me).&lt;/p&gt;</description></item><item><title>re: Did you know… You can break the debugger without using Breakpoints? - #313</title><link>http://blogs.msdn.com/saraford/archive/2008/09/15/did-you-know-you-can-break-the-debugger-without-using-breakpoints-313.aspx#8954321</link><pubDate>Tue, 16 Sep 2008 23:09:05 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8954321</guid><dc:creator>Morten</dc:creator><description>&lt;p&gt;Easier than pressing F9 ??? Give me a break! This is ugly and messy.&lt;/p&gt;</description></item><item><title>re: Did you know… You can break the debugger without using Breakpoints? - #313</title><link>http://blogs.msdn.com/saraford/archive/2008/09/15/did-you-know-you-can-break-the-debugger-without-using-breakpoints-313.aspx#8959219</link><pubDate>Fri, 19 Sep 2008 21:14:27 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8959219</guid><dc:creator>Horatio Nelson</dc:creator><description>&lt;p&gt;... and then move your code to production and scratch your head while you try to figure out why your web app is crashing....&lt;/p&gt;</description></item><item><title>re: Did you know… You can break the debugger without using Breakpoints? - #313</title><link>http://blogs.msdn.com/saraford/archive/2008/09/15/did-you-know-you-can-break-the-debugger-without-using-breakpoints-313.aspx#8959347</link><pubDate>Fri, 19 Sep 2008 23:06:18 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8959347</guid><dc:creator>DarthObiwan</dc:creator><description>&lt;p&gt;Another great one is Debugger.Attach(). This is useful when you are working on managed code hosted in an unmanaged application. Instead of doing the whole &amp;quot;Attach to Process&amp;quot; it just prompts you to attach itself.&lt;/p&gt;</description></item><item><title>re: Did you know… You can break the debugger without using Breakpoints? - #313</title><link>http://blogs.msdn.com/saraford/archive/2008/09/15/did-you-know-you-can-break-the-debugger-without-using-breakpoints-313.aspx#8969249</link><pubDate>Mon, 29 Sep 2008 20:20:11 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8969249</guid><dc:creator>Richard</dc:creator><description>&lt;p&gt;&amp;quot;Easier than pressing F9?&amp;quot;&lt;/p&gt;
&lt;p&gt;Sometimes the code you want to debug is launched by someone else and you can't easily launch it in the debugger yourself. &amp;nbsp;So you put that in your code and you'll be prompted to JIT debug the code.&lt;/p&gt;</description></item><item><title>Visual Studio 2008 每日提示(三十一)</title><link>http://blogs.msdn.com/saraford/archive/2008/09/15/did-you-know-you-can-break-the-debugger-without-using-breakpoints-313.aspx#9455586</link><pubDate>Tue, 03 Mar 2009 04:18:34 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9455586</guid><dc:creator>xjb</dc:creator><description>&lt;p&gt;本篇包括tip311-tip320&lt;a rel="nofollow" target="_new" href="http://www.watch-life.net/visual-studio/visual-studio-2008-tip-day-31.html#311"&gt;http://www.watch-life.net/visual-studio/visual-studio-2008-tip-day-31.html#311&lt;/a&gt;、按S...&lt;/p&gt;
</description></item></channel></rss>