<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Variables, Arrays, and Hash Tables</title>
	<atom:link href="http://www.powershellpro.com/powershell-tutorial-introduction/variables-arrays-hashes/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.powershellpro.com</link>
	<description>Sharing the Experience</description>
	<pubDate>Tue, 06 Jan 2009 23:34:29 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
		<item>
		<title>By: Steve</title>
		<link>http://www.powershellpro.com/powershell-tutorial-introduction/variables-arrays-hashes/#comment-266</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Tue, 09 Dec 2008 02:50:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.powershellpro.com/powershell-tutorial-introduction/variables-arrays-hashes/#comment-266</guid>
		<description>You don't have to dim variables in VBscript unless you use the option explicit keywords.</description>
		<content:encoded><![CDATA[<p>You don&#8217;t have to dim variables in VBscript unless you use the option explicit keywords.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: metrophage</title>
		<link>http://www.powershellpro.com/powershell-tutorial-introduction/variables-arrays-hashes/#comment-255</link>
		<dc:creator>metrophage</dc:creator>
		<pubDate>Fri, 14 Nov 2008 20:58:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.powershellpro.com/powershell-tutorial-introduction/variables-arrays-hashes/#comment-255</guid>
		<description>Additional comment:

You say that 
$strC = $strA += $strB
will cause $strC to have the value "Hello World!"

That's true.

BUT... $strA will now ALSO have the value "Hello World!"

Great tutorial, tho!
What you want is $strC = $strA + $strB.</description>
		<content:encoded><![CDATA[<p>Additional comment:</p>
<p>You say that<br />
$strC = $strA += $strB<br />
will cause $strC to have the value &#8220;Hello World!&#8221;</p>
<p>That&#8217;s true.</p>
<p>BUT&#8230; $strA will now ALSO have the value &#8220;Hello World!&#8221;</p>
<p>Great tutorial, tho!<br />
What you want is $strC = $strA + $strB.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: poiuytrez</title>
		<link>http://www.powershellpro.com/powershell-tutorial-introduction/variables-arrays-hashes/#comment-161</link>
		<dc:creator>poiuytrez</dc:creator>
		<pubDate>Fri, 25 Jul 2008 18:12:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.powershellpro.com/powershell-tutorial-introduction/variables-arrays-hashes/#comment-161</guid>
		<description>I love your tutorial.
Thanks a lot</description>
		<content:encoded><![CDATA[<p>I love your tutorial.<br />
Thanks a lot</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gomedh</title>
		<link>http://www.powershellpro.com/powershell-tutorial-introduction/variables-arrays-hashes/#comment-160</link>
		<dc:creator>gomedh</dc:creator>
		<pubDate>Thu, 24 Jul 2008 21:53:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.powershellpro.com/powershell-tutorial-introduction/variables-arrays-hashes/#comment-160</guid>
		<description>How can we create and initialize dynamic multidimensional arrays ?</description>
		<content:encoded><![CDATA[<p>How can we create and initialize dynamic multidimensional arrays ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MBosse</title>
		<link>http://www.powershellpro.com/powershell-tutorial-introduction/variables-arrays-hashes/#comment-147</link>
		<dc:creator>MBosse</dc:creator>
		<pubDate>Wed, 02 Jul 2008 18:35:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.powershellpro.com/powershell-tutorial-introduction/variables-arrays-hashes/#comment-147</guid>
		<description>I am enjoying this material; thanks for putting it together.  In your string concatenation example of $strC = $strA += $strB, you correctly state that the value of $strC is the concatenation of strings $strA and $strB.  However, the += operator is not the same as the + operator.  The += operator will concatenate the operand on the left side with the operand on the right and store the result in the operand on the left.  A += B is shorthand for A = A + B.  So in this example, after the operation, $strA also contains the concatenation of $strA and $strB.  Similarly, A -= B is shorthand for A = A - B.</description>
		<content:encoded><![CDATA[<p>I am enjoying this material; thanks for putting it together.  In your string concatenation example of $strC = $strA += $strB, you correctly state that the value of $strC is the concatenation of strings $strA and $strB.  However, the += operator is not the same as the + operator.  The += operator will concatenate the operand on the left side with the operand on the right and store the result in the operand on the left.  A += B is shorthand for A = A + B.  So in this example, after the operation, $strA also contains the concatenation of $strA and $strB.  Similarly, A -= B is shorthand for A = A - B.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: FMoses</title>
		<link>http://www.powershellpro.com/powershell-tutorial-introduction/variables-arrays-hashes/#comment-131</link>
		<dc:creator>FMoses</dc:creator>
		<pubDate>Wed, 18 Jun 2008 17:43:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.powershellpro.com/powershell-tutorial-introduction/variables-arrays-hashes/#comment-131</guid>
		<description>$x = 5 * 2 / 10 + 7 / 3 * 2 $x = 6

only comes out equal to 6 if you declare the variable as an integer
    [int]$x = ...

otherwise you get:

    $x = 5.66666666666667</description>
		<content:encoded><![CDATA[<p>$x = 5 * 2 / 10 + 7 / 3 * 2 $x = 6</p>
<p>only comes out equal to 6 if you declare the variable as an integer<br />
    [int]$x = &#8230;</p>
<p>otherwise you get:</p>
<p>    $x = 5.66666666666667</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jesse Hamrick</title>
		<link>http://www.powershellpro.com/powershell-tutorial-introduction/variables-arrays-hashes/#comment-72</link>
		<dc:creator>Jesse Hamrick</dc:creator>
		<pubDate>Tue, 18 Mar 2008 04:48:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.powershellpro.com/powershell-tutorial-introduction/variables-arrays-hashes/#comment-72</guid>
		<description>Ooooppps! Good catch Lawson. I am launching WMI part 3 tutorial tomorrow 3/19. I am looking to start ADSI next week, so look for it.</description>
		<content:encoded><![CDATA[<p>Ooooppps! Good catch Lawson. I am launching WMI part 3 tutorial tomorrow 3/19. I am looking to start ADSI next week, so look for it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lawson Dyer</title>
		<link>http://www.powershellpro.com/powershell-tutorial-introduction/variables-arrays-hashes/#comment-71</link>
		<dc:creator>Lawson Dyer</dc:creator>
		<pubDate>Mon, 17 Mar 2008 18:03:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.powershellpro.com/powershell-tutorial-introduction/variables-arrays-hashes/#comment-71</guid>
		<description>In your answers you have $strComputer = FSrv01 should it not be $strComputer = "FSrv01".  You left of the double-quotes.  When do you plan to post the ADSI training session?  Keep up the good work.</description>
		<content:encoded><![CDATA[<p>In your answers you have $strComputer = FSrv01 should it not be $strComputer = &#8220;FSrv01&#8243;.  You left of the double-quotes.  When do you plan to post the ADSI training session?  Keep up the good work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Greg</title>
		<link>http://www.powershellpro.com/powershell-tutorial-introduction/variables-arrays-hashes/#comment-66</link>
		<dc:creator>Greg</dc:creator>
		<pubDate>Thu, 06 Mar 2008 14:22:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.powershellpro.com/powershell-tutorial-introduction/variables-arrays-hashes/#comment-66</guid>
		<description>Great--keep them coming.
Clear, concise, examples!</description>
		<content:encoded><![CDATA[<p>Great&#8211;keep them coming.<br />
Clear, concise, examples!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
