<?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>Tom F. - Senior Software Engineer</title>
	<atom:link href="https://intellitect.com/blog/author/tom-faust/feed/" rel="self" type="application/rss+xml" />
	<link>https://intellitect.com/blog/author/tom-faust/</link>
	<description>Complex Software Development - Simplified</description>
	<lastBuildDate>Tue, 27 Jun 2023 20:35:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://intellitect.com/wp-content/uploads/2017/02/cropped-favicon-1-32x32.png</url>
	<title>Tom F. - Senior Software Engineer</title>
	<link>https://intellitect.com/blog/author/tom-faust/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Locking a Block of Code With an Integer</title>
		<link>https://intellitect.com/blog/locking-a-block-of-code-with-an-integer/</link>
		
		<dc:creator><![CDATA[Tom]]></dc:creator>
		<pubDate>Mon, 27 Jun 2016 22:16:50 +0000</pubDate>
				<category><![CDATA[.NET/C#]]></category>
		<category><![CDATA[Threading]]></category>
		<guid isPermaLink="false">http://intellitect.com/?p=25671</guid>

					<description><![CDATA[<p>Exploring the Integer Lock Code Block I was talking with a developer recently who was convinced that you could use a static integer variable to lock a block of code merely by casting it to an object, like this private static int Number = 0; &#8230; lock( (object) Number ) { &#8230; } First it&#8230;&#160;</p>
<div class="read-more-wrapper"><a href="https://intellitect.com/blog/locking-a-block-of-code-with-an-integer/" class="button button-primary" rel="bookmark">Read More &#187;<span class="screen-reader-text">Locking a Block of Code With an Integer</span></a></div>
<p>The post <a href="https://intellitect.com/blog/locking-a-block-of-code-with-an-integer/">Locking a Block of Code With an Integer</a> appeared first on <a href="https://intellitect.com">IntelliTect</a>.</p>
]]></description>
		
		
		
			</item>
		<item>
		<title>Making Sense of AssemblyVersion Numbers</title>
		<link>https://intellitect.com/blog/making-sense-of-assemblyversion-numbers/</link>
		
		<dc:creator><![CDATA[Tom]]></dc:creator>
		<pubDate>Tue, 15 Mar 2016 18:25:49 +0000</pubDate>
				<category><![CDATA[.NET/C#]]></category>
		<guid isPermaLink="false">http://intellitect.com/?p=24091</guid>

					<description><![CDATA[<p>A Guide to AssemblyVersion and FileVersion The components of a Microsoft DLL or EXE version number are Major, Minor, Build, and Revision. According to Microsoft, the components are used by convention as follows: Major: Assemblies with the same name but different major versions are not interchangeable. A higher version number might indicate a major rewrite&#8230;&#160;</p>
<div class="read-more-wrapper"><a href="https://intellitect.com/blog/making-sense-of-assemblyversion-numbers/" class="button button-primary" rel="bookmark">Read More &#187;<span class="screen-reader-text">Making Sense of AssemblyVersion Numbers</span></a></div>
<p>The post <a href="https://intellitect.com/blog/making-sense-of-assemblyversion-numbers/">Making Sense of AssemblyVersion Numbers</a> appeared first on <a href="https://intellitect.com">IntelliTect</a>.</p>
]]></description>
		
		
		
			</item>
		<item>
		<title>Displaying a Custom Tooltip</title>
		<link>https://intellitect.com/blog/display-a-custom-tooltip-at-the-mouse-position-on-a-large-wpf-control/</link>
		
		<dc:creator><![CDATA[Tom]]></dc:creator>
		<pubDate>Wed, 16 Dec 2015 21:28:41 +0000</pubDate>
				<category><![CDATA[.NET/C#]]></category>
		<category><![CDATA[WPF]]></category>
		<guid isPermaLink="false">http://intellitect.com/?p=21861</guid>

					<description><![CDATA[<p>Custom Mouse Tooltip on Large WPF Control In my work for an electric utility, we have a WPF-based map control used to show the location of power lines, along with other devices such as transformers and points of service. We wanted to show a tooltip when a user clicks on one of the power lines&#8230;&#160;</p>
<div class="read-more-wrapper"><a href="https://intellitect.com/blog/display-a-custom-tooltip-at-the-mouse-position-on-a-large-wpf-control/" class="button button-primary" rel="bookmark">Read More &#187;<span class="screen-reader-text">Displaying a Custom Tooltip</span></a></div>
<p>The post <a href="https://intellitect.com/blog/display-a-custom-tooltip-at-the-mouse-position-on-a-large-wpf-control/">Displaying a Custom Tooltip</a> appeared first on <a href="https://intellitect.com">IntelliTect</a>.</p>
]]></description>
		
		
		
			</item>
		<item>
		<title>When to Use and Not Use Variable Type var in C#</title>
		<link>https://intellitect.com/blog/when-to-use-and-not-use-var-in-c/</link>
					<comments>https://intellitect.com/blog/when-to-use-and-not-use-var-in-c/#comments</comments>
		
		<dc:creator><![CDATA[Tom]]></dc:creator>
		<pubDate>Thu, 09 Jul 2015 21:39:05 +0000</pubDate>
				<category><![CDATA[.NET/C#]]></category>
		<category><![CDATA[Coding Guidelines]]></category>
		<category><![CDATA[var]]></category>
		<guid isPermaLink="false">http://intellitect.com/?p=18631</guid>

					<description><![CDATA[<p>Settling the Debate Surrounding var and C# Many languages, particularly scripting languages, have a loosely typed variable type named var. In these languages, var can hold any type of data. If you place a number into a var then it will be interpreted as a number whenever possible. If you enter text it will be&#8230;&#160;</p>
<div class="read-more-wrapper"><a href="https://intellitect.com/blog/when-to-use-and-not-use-var-in-c/" class="button button-primary" rel="bookmark">Read More &#187;<span class="screen-reader-text">When to Use and Not Use Variable Type var in C#</span></a></div>
<p>The post <a href="https://intellitect.com/blog/when-to-use-and-not-use-var-in-c/">When to Use and Not Use Variable Type var in C#</a> appeared first on <a href="https://intellitect.com">IntelliTect</a>.</p>
]]></description>
		
					<wfw:commentRss>https://intellitect.com/blog/when-to-use-and-not-use-var-in-c/feed/</wfw:commentRss>
			<slash:comments>35</slash:comments>
		
		
			</item>
		<item>
		<title>Suspend and Resume in Visual Studio Using TFS</title>
		<link>https://intellitect.com/blog/suspend-and-resume-in-visual-studio-using-tfs/</link>
		
		<dc:creator><![CDATA[Tom]]></dc:creator>
		<pubDate>Wed, 22 Apr 2015 15:39:24 +0000</pubDate>
				<category><![CDATA[DevOps]]></category>
		<category><![CDATA[Team Foundation Server]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<guid isPermaLink="false">http://intellitect.com/?p=17001</guid>

					<description><![CDATA[<p>Exploring Suspended Work In order to keep our release builds as bug-proof as possible, our development team expects that code reviews are to be completed before checking in the code changes. This presents a problem with Pending Changes in Visual Studio. Let&#8217;s say I modify a few files for a particular user story or bug.&#8230;&#160;</p>
<div class="read-more-wrapper"><a href="https://intellitect.com/blog/suspend-and-resume-in-visual-studio-using-tfs/" class="button button-primary" rel="bookmark">Read More &#187;<span class="screen-reader-text">Suspend and Resume in Visual Studio Using TFS</span></a></div>
<p>The post <a href="https://intellitect.com/blog/suspend-and-resume-in-visual-studio-using-tfs/">Suspend and Resume in Visual Studio Using TFS</a> appeared first on <a href="https://intellitect.com">IntelliTect</a>.</p>
]]></description>
		
		
		
			</item>
	</channel>
</rss>
