<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>sevcik.tk &#187; debugging tips and tricks</title>
	<atom:link href="http://sevcik.tk/tag/debugging-tips-and-tricks/feed" rel="self" type="application/rss+xml" />
	<link>http://sevcik.tk</link>
	<description>sevcik [dot] tk / .net, csharp, sharepoint, visual studio, my knowledge base, my tips, etc...</description>
	<lastBuildDate>Sat, 13 Feb 2010 23:09:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Another Visual Studio Debugging Tips and Tricks</title>
		<link>http://sevcik.tk/2009/10/03/another-visual-studio-debugging-tips-and-tricks.html</link>
		<comments>http://sevcik.tk/2009/10/03/another-visual-studio-debugging-tips-and-tricks.html#comments</comments>
		<pubDate>Sat, 03 Oct 2009 16:42:03 +0000</pubDate>
		<dc:creator>ps</dc:creator>
				<category><![CDATA[Visual Studio 2008]]></category>
		<category><![CDATA[debugging tips and tricks]]></category>

		<guid isPermaLink="false">http://sevcik.tk/?p=165</guid>
		<description><![CDATA[by Mahesh Krishnan on http://blogesh.wordpress.com/2008/09/09/visual-studio-debugging-tips-and-tricks/ 1. Debugging/Stepping into Framework code 2. Moving the Execution Point 3. Step into Specific 4. Step over properties and operators 5. Tracepoints 6. Conditional break points and trace points 7. The DebuggerDisplay attribute 8. The DebuggerBrowsable attribute 9. The DebuggerTypeProxy attribute 10. The System.Diagnositcs Namespace]]></description>
			<content:encoded><![CDATA[<p><a href="http://sevcik.tk/files/Visual-Studio-Debugging-Tips-and-Tricks-Maheshs-brain-droppings.png" target="_blank"><img class="alignnone size-medium wp-image-172" style="float:left;" title="Visual Studio Debugging Tips and Tricks Maheshs brain droppings" src="http://sevcik.tk/files/Visual-Studio-Debugging-Tips-and-Tricks-Maheshs-brain-droppings-33x425.png" alt="Visual Studio Debugging Tips and Tricks Maheshs brain droppings" width="33" height="425" /></a>by Mahesh Krishnan on <a title="blogesh.wordpress.com" href="http://blogesh.wordpress.com/2008/09/09/visual-studio-debugging-tips-and-tricks/" target="_blank">http://blogesh.wordpress.com/2008/09/09/visual-studio-debugging-tips-and-tricks/</a></p>
<p>1. Debugging/Stepping into Framework code</p>
<p>2. Moving the Execution Point</p>
<p>3. Step into Specific</p>
<p>4. Step over properties and operators</p>
<p>5. Tracepoints</p>
<p>6. Conditional break points and trace points</p>
<p>7. The DebuggerDisplay attribute</p>
<p>8. The DebuggerBrowsable attribute</p>
<p>9. The DebuggerTypeProxy attribute</p>
<p>10. The System.Diagnositcs Namespace</p>
]]></content:encoded>
			<wfw:commentRss>http://sevcik.tk/2009/10/03/another-visual-studio-debugging-tips-and-tricks.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 debugging tips and tricks screencasts</title>
		<link>http://sevcik.tk/2009/06/13/5-debugging-tips-and-tricks-screencasts.html</link>
		<comments>http://sevcik.tk/2009/06/13/5-debugging-tips-and-tricks-screencasts.html#comments</comments>
		<pubDate>Sat, 13 Jun 2009 11:46:09 +0000</pubDate>
		<dc:creator>ps</dc:creator>
				<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[debug]]></category>
		<category><![CDATA[debugging tips and tricks]]></category>

		<guid isPermaLink="false">http://sevcik.tk/?p=144</guid>
		<description><![CDATA[5 debugging screencasts by Brian Hitney (Microsoft developer evangelist) http://structuretoobig.com/ Part 1 is primarily an introduction into setting breakpoints … turns out there are number of ways to set breakpoints other than just clicking in the gutter. http://channel9.msdn.com/posts/dpeeast/DevNugget-Debugging-Tips-and-Tricks-Part-1/ In part 2, he looks at using breakpoint modifiers – specifically, using the hit count modifier, and [...]]]></description>
			<content:encoded><![CDATA[<p><span id="ctl00_MainPlaceHolder_Starter_BodyLabel">5 debugging screencasts by Brian Hitney (Microsoft developer evangelist) </span><a title="structuretoobig.com" href="http://structuretoobig.com/" target="_blank">http://structuretoobig.com/</a></p>
<ol>
<li>Part 1 is primarily an introduction into setting breakpoints … turns out there are number of ways to set breakpoints other than just clicking in the gutter.<br />
<a title="channel9.msdn.com" href="http://channel9.msdn.com/posts/dpeeast/DevNugget-Debugging-Tips-and-Tricks-Part-1/" target="_blank">http://channel9.msdn.com/posts/dpeeast/DevNugget-Debugging-Tips-and-Tricks-Part-1/</a></li>
<li>In part 2, he looks at using breakpoint modifiers – specifically, using the hit count modifier, and then the condition modifier.  The condition modifier can be incredibly powerful – while we can corrupt the state of our application pretty easily (as he will demonstrate), it starts to open a whole new world for debugging more efficiently.<br />
<a title="channel9.msdn.com" href="http://channel9.msdn.com/posts/dpeeast/DevNugget-Debugging-Tips-and-Tricks-Part-2/" target="_blank">http://channel9.msdn.com/posts/dpeeast/DevNugget-Debugging-Tips-and-Tricks-Part-2/</a></li>
<li>In part 3, we’ll dive a little deeper into some conditions by writing methods to help debug our application, then look at using the filter breakpoint modifier to debug multithreaded applications.  Finally, we’ll take a quick look at tracepoints.<br />
<a title="channel9.msdn.com" href="http://channel9.msdn.com/posts/dpeeast/DevNugget-Debugging-Tips-and-Tricks-Part-3/" target="_blank">http://channel9.msdn.com/posts/dpeeast/DevNugget-Debugging-Tips-and-Tricks-Part-3/</a></li>
<li><span id="ctl00_MainPlaceHolder_Starter_BodyLabel">In part 4, we&#8217;ll look at the watch windows, the immediate window, and Make Object ID command.<br />
</span><a title="channel9.msdn.com" href="http://channel9.msdn.com/posts/dpeeast/DevNugget-Debugging-Tips-and-Tricks-Part-4/" target="_blank">http://channel9.msdn.com/posts/dpeeast/DevNugget-Debugging-Tips-and-Tricks-Part-4/</a></li>
<li><span id="ctl00_MainPlaceHolder_Starter_BodyLabel">In part 5, we&#8217;ll look at how to use the set next statement while debugging. We&#8217;ll also look at setting up the .NET Reference Source Code for stepping through the .NET BCLs, followed by some exception handling tips.  Finally, we&#8217;ll take a look at using Mole (a VS visualizer) to further enhance the debugging experience.<br />
</span><a title="channel9.msdn.com" href="http://channel9.msdn.com/posts/dpeeast/DevNugget-Debugging-Tips-and-Tricks-Part-5/" target="_blank">http://channel9.msdn.com/posts/dpeeast/DevNugget-Debugging-Tips-and-Tricks-Part-5/</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://sevcik.tk/2009/06/13/5-debugging-tips-and-tricks-screencasts.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
