<?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>MattVanAndel.com &#187; Conditionals</title>
	<atom:link href="http://www.mattvanandel.com/tag/conditionals/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mattvanandel.com</link>
	<description>Web Development for the Developmentally Challenged</description>
	<lastBuildDate>Mon, 11 Apr 2011 14:29:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
		<item>
		<title>ASP.NET Tutorial 5: Conditionals 2 ( switch constructs )</title>
		<link>http://www.mattvanandel.com/787/asp-net-tutorial-5-conditionals-2-switch-constructs/</link>
		<comments>http://www.mattvanandel.com/787/asp-net-tutorial-5-conditionals-2-switch-constructs/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 17:06:04 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[@Complexity: Beginner]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Conditionals]]></category>

		<guid isPermaLink="false">http://www.mattvanandel.com/?p=787</guid>
		<description><![CDATA[This article explains the use of <span class="code blue">switch</span> constructs. Switch constructs are a conditional, like if/else constructs discussed in the previous ASP.NET Tutorial 4. In all honesty, you won't use <span class="code blue">switch</span> blocks nearly as often as you will use <span class="code blue">if</span>... but there are times when they just plain make more sense.

A <span class="code blue">switch</span> block compares a single variable or value to any number of other values, and when it finds a match, it executes some code. What really makes switch blocks handy is that after it finds a match, it will keep checking conditions until you tell it to stop (by using the <span class="code blue">break</span> keyword).]]></description>
		<wfw:commentRss>http://www.mattvanandel.com/787/asp-net-tutorial-5-conditionals-2-switch-constructs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.NET Tutorial 4: Conditionals ( if/else constructs )</title>
		<link>http://www.mattvanandel.com/691/asp-net-tutorial-4-conditionals-ifelse-constructs/</link>
		<comments>http://www.mattvanandel.com/691/asp-net-tutorial-4-conditionals-ifelse-constructs/#comments</comments>
		<pubDate>Tue, 01 Dec 2009 19:42:24 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[@Complexity: Beginner]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Conditionals]]></category>

		<guid isPermaLink="false">http://www.mattvanandel.com/?p=691</guid>
		<description><![CDATA[This article will introduce you to conditionals in C#. Conditionals are a program's decision-makers. They are used to evaluate and compare data, and then take different sets of actions based on the evaluations. It's really not very different from the way humans make decisions. For instance, let's say you've decided that you want go swimming... but only if it's not too cold outside (because I live in sunny California, I'd consider anything 75 or under is "too cold"). If you can phrase a concept like that in English (&#34;if it's over 75 degrees outside, I'll go swimming&#34;), you can program it just as easily.

Hopefully by the end of this article you will be able to write some of the most basic conditionals in C#... <span class="code blue">if</span> constructs. We'll even cover some of the more fancy variations of <span class="code blue">if</span>... including <span class="code blue">if else</span> and <span class="code blue">if else if</span> constructs.]]></description>
		<wfw:commentRss>http://www.mattvanandel.com/691/asp-net-tutorial-4-conditionals-ifelse-constructs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

