<?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>Quinterox &#187; for each</title>
	<atom:link href="http://www.quinterox.com/content/tag/for-each/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.quinterox.com/content</link>
	<description>Cesar Quinteros</description>
	<lastBuildDate>Sun, 20 Jun 2010 04:51:28 +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>String vs. String()</title>
		<link>http://www.quinterox.com/content/code/string-vs-string/</link>
		<comments>http://www.quinterox.com/content/code/string-vs-string/#comments</comments>
		<pubDate>Sat, 16 Aug 2008 05:25:16 +0000</pubDate>
		<dc:creator>Cesar Quinteros</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[asp]]></category>
		<category><![CDATA[directories]]></category>
		<category><![CDATA[for each]]></category>

		<guid isPermaLink="false">http://quinterox.com/code/?p=24</guid>
		<description><![CDATA[Something great I noticed about the difference of dimming as String and as String().]]></description>
			<content:encoded><![CDATA[<p>I noticed something today, when you add the () to the end of the word String it actually instantiates an array as opposed to just the word String. Here is an example that depicts that:</p>
<pre>Dim strThemesFolder As String = Server.MapPath("~contentthemes")
<span style="color: #00ff00;"><span><span style="color: #008000;">'Notice the Array below, a regular string wouldn't be able to hold all those values</span></span>
</span>
Dim strThemeFolders As String() = Directory.GetDirectories(strThemesFolder)
Dim strFolderName As String
For Each strFolderName In strThemeFolders
      Response.Write(strFolderName)
Next</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.quinterox.com/content/code/string-vs-string/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
