<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" media="screen" href="/styles/xslt/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:c9="http://channel9.msdn.com">
<channel>
	<title>Comment Feed for Channel 9 - Creating Arrays of Values - 09</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09/RSS"></atom:link>
	<image>
		<url>http://ak.channel9.msdn.com/ch9/1373/662da761-7c56-42c0-8b8e-9f7a01371373/09CreatingArraysofValues_100_ch9.jpg</url>
		<title>Channel 9 - Creating Arrays of Values - 09</title>
		<link></link>
	</image>
	<description>In this lesson we talk about arrays, which are multi-part variables—a &amp;quot;bucket&amp;quot; containing other &amp;quot;buckets,&amp;quot; if you will. We demonstrate how to declare and utilize arrays, including setting and retrieving their values, initializing their values, attempting to access values outside of the boundaries of the array, and iterating through arrays using the foreach statement. Finally, we demonstrate a couple of powerful built-in methods that give arrays added features. Download the source code for Creating Arrays of Values </description>
	<link></link>
	<language>en</language>
	<pubDate>Wed, 19 Jun 2013 10:18:24 GMT</pubDate>
	<lastBuildDate>Wed, 19 Jun 2013 10:18:24 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<item>
		<title>Re: Creating Arrays of Values - 09</title>
		<description>
			<![CDATA[<p>I got a bit lost on a bit of this. I did some fiddling and started understanding more. I tried applying the Array.Reverse to the int array and that gave me a bit of a better understanding of how that line of code works. It's use then with the char array made more sense.</p><p>posted by Dan12R</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634581155606821736</link>
		<pubDate>Mon, 28 Nov 2011 22:19:20 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634581155606821736</guid>
		<dc:creator>Dan12R</dc:creator>
	</item>
	<item>
		<title>Re: Creating Arrays of Values - 09</title>
		<description>
			<![CDATA[<p>Also, what does the &quot;.ToString()&quot; get us in the &quot;Console.WriteLine(numbers[i].ToString());&quot; line do? I did it with just &quot;Console.WriteLine(numbers[i]);&quot; and it worked.</p><p>posted by Dan12R</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634581157434937511</link>
		<pubDate>Mon, 28 Nov 2011 22:22:23 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634581157434937511</guid>
		<dc:creator>Dan12R</dc:creator>
	</item>
	<item>
		<title>Re: Creating Arrays of Values - 09</title>
		<description>
			<![CDATA[<p>@Dan12R ... First, thanks for the feedback ... this helps us refine the content going forward once we see where the rough spots are.</p><p>Second, to your question ... .ToString() ... in this SPECIFIC case, the .ToString() doesn't buy much because Console.WriteLine() can accept just about any data type you throw at it (In fact, there are 19 versions of this method ... based on what you pass into it, the correct version of that WriteLine() method will be called and the data converted appropriately for display in the Console window.</p><p>The reason why I added a .ToString() was out of habit - a habit born out of the need in .NET explicitly convert numeric data to a string when presenting on a screen (like a web page, a windows form, etc.)</p><p>So, the good news is that you fought through this and figured it out.&nbsp; Congrats.&nbsp; I'm sorry if the explanations were not quite clear enough on this one.</p><p>posted by BobTabor</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634587851325611990</link>
		<pubDate>Tue, 06 Dec 2011 16:18:52 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634587851325611990</guid>
		<dc:creator>BobTabor</dc:creator>
	</item>
	<item>
		<title>Re: Creating Arrays of Values - 09</title>
		<description>
			<![CDATA[Hi Bob,<br><br>Your videos are very good.but have to wait for along time for these videos to buffer.can u tell me what should be the internet speed to play these videos without taking much time to buffer and i wanted to buy these videos and my frd in us will be paying on behalf of me is it possible to access vidoes then from my system<br><br><br><p>posted by srinivas</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634630180369053544</link>
		<pubDate>Tue, 24 Jan 2012 16:07:16 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634630180369053544</guid>
		<dc:creator>srinivas</dc:creator>
	</item>
	<item>
		<title>Re: Creating Arrays of Values - 09</title>
		<description>
			<![CDATA[<p>@<a href="/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634630180369053544">srinivas</a>: Hi, sorry -- I'm a bit confused with your question. &nbsp;The videos on channel9.msdn.com are free. &nbsp;If you're referring to these videos, you should be able to download them directly from links next to the video player. &nbsp;If you are referring to my personal website, www.learnvisualstudio.net -- if streaming is a problem -- we do offer the ability to download the videos to your hard drive in a .zip format. &nbsp;Please see our site for more information. &nbsp;Thank you for your interest!</p><p>posted by BobTabor</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634632798177136065</link>
		<pubDate>Fri, 27 Jan 2012 16:50:17 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634632798177136065</guid>
		<dc:creator>BobTabor</dc:creator>
	</item>
	<item>
		<title>Re: Creating Arrays of Values - 09</title>
		<description>
			<![CDATA[&#64;srinivas&#58; I have the same problem when looking at the videos, but then I found out that shutting down the Channel9 tab and finding it again from the startup tab solved the problem. I have to do this after each video, so it is a bit frustrating when I actually do have time to look at several videos in a row. Thanks for the videos btw Bob, great stuff and easy to follow&#33;<p>posted by baklas</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634638584261868167</link>
		<pubDate>Fri, 03 Feb 2012 09:33:46 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634638584261868167</guid>
		<dc:creator>baklas</dc:creator>
	</item>
	<item>
		<title>Re: Creating Arrays of Values - 09</title>
		<description>
			<![CDATA[<p>@<a href="/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634638584261868167">baklas</a>: Thanks for the confirmation on that issue! &nbsp;Also, thanks for the nice note. &nbsp;<img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif?v=c9' alt='Smiley' /></p><p>posted by BobTabor</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634644024724951096</link>
		<pubDate>Thu, 09 Feb 2012 16:41:12 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634644024724951096</guid>
		<dc:creator>BobTabor</dc:creator>
	</item>
	<item>
		<title>Re: Creating Arrays of Values - 09</title>
		<description>
			<![CDATA[I am a beginner to programming and I would like to say this is a great starting point. I have crawled the web to find your gem of a great lesson plan. I would like to say thank you.<p>posted by Alex Wade</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634662090194948208</link>
		<pubDate>Thu, 01 Mar 2012 14:30:19 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634662090194948208</guid>
		<dc:creator>Alex Wade</dc:creator>
	</item>
	<item>
		<title>Re: Creating Arrays of Values - 09</title>
		<description>
			<![CDATA[<p>@<a href="/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634662090194948208">Alex Wade</a>: Thanks Alex, glad you're enjoying the series. &nbsp;Best wishes!</p><p>posted by BobTabor</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634662966655530421</link>
		<pubDate>Fri, 02 Mar 2012 14:51:05 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634662966655530421</guid>
		<dc:creator>BobTabor</dc:creator>
	</item>
	<item>
		<title>Re: Creating Arrays of Values - 09</title>
		<description>
			<![CDATA[Someone&#39;s a Lost fan, eh, Bob&#63; &#59;&#41;<br><br>But seriously, your lessons are extremely helpful, and perfectly paced in terms of how you introduce new concepts. Thanks so much for these.<p>posted by Jake B</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634667061162275927</link>
		<pubDate>Wed, 07 Mar 2012 08:35:16 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634667061162275927</guid>
		<dc:creator>Jake B</dc:creator>
	</item>
	<item>
		<title>Re: Creating Arrays of Values - 09</title>
		<description>
			<![CDATA[<p>@<a href="/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634667061162275927">Jake B</a>: Got to have a little fun with your examples otherwise life gets boring. &nbsp;<img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif?v=c9' alt='Smiley' /> &nbsp;Glad you're enjoying these.</p><p>posted by BobTabor</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634668152576085451</link>
		<pubDate>Thu, 08 Mar 2012 14:54:17 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634668152576085451</guid>
		<dc:creator>BobTabor</dc:creator>
	</item>
	<item>
		<title>Re: Creating Arrays of Values - 09</title>
		<description>
			<![CDATA[<p>@<a href="/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634668152576085451">BobTabor</a>: Easy to understand videos, Thanks Bob <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif?v=c9' alt='Smiley' /></p><p>posted by thens</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634673992107554299</link>
		<pubDate>Thu, 15 Mar 2012 09:06:50 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634673992107554299</guid>
		<dc:creator>thens</dc:creator>
	</item>
	<item>
		<title>Re: Creating Arrays of Values - 09</title>
		<description>
			<![CDATA[<p>@BobTabor I really like your videos they are definitely helping me understand the language!</p><p>Got a question though.</p><p>Let's say I want C# to create an array of numbers between 1 and 50 and then print that array to my screen or just store it in memory so that I can manipulate the data in the future.</p><p>What would be the most efficient way to do this? I could write out the array myself but what I'd really like is for C# to create the array for me.</p><p>Alternatively, if you know of an msdn article that explains how to do this, i'd be happy to do some reading too!</p><p>posted by JosiahBlaisdell</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634684280742034081</link>
		<pubDate>Tue, 27 Mar 2012 06:54:34 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634684280742034081</guid>
		<dc:creator>JosiahBlaisdell</dc:creator>
	</item>
	<item>
		<title>Re: Creating Arrays of Values - 09</title>
		<description>
			<![CDATA[It is a palindrome programme<br><br>        static void Main&#40;string&#91;&#93; args&#41;<br>        &#123;<br>            string str &#61; &#34;&#34;&#59;<br>            Console.WriteLine&#40;&#34;Enter a String&#34;&#41;&#59;<br>            string s &#61; Console.ReadLine&#40;&#41;&#59;<br>            int i &#61; s.Length&#59;<br>            for &#40;int j &#61; i-1&#59; j &#62;&#61; 0&#59; j--&#41;<br>            &#123;<br>                str &#61; str &#43; s&#91;j&#93;&#59;<br>            &#125;<br>            if &#40;str &#61;&#61; s&#41;<br>            &#123;<br>                Console.WriteLine&#40;s &#43; &#34; is palindrome&#34;&#41;&#59;<br>            &#125;<br>            else<br>            &#123;<br>                Console.WriteLine&#40;s &#43; &#34; is not a palindeome&#34;&#41;&#59;<br>            &#125;<br>            Console.ReadLine&#40;&#41;&#59;<br>        &#125;<br><br>my question is &#39;str &#61; str &#43; s&#91;j&#93;&#59;&#39; in this line.<br>What is the meaning of &#39;s&#91;j&#93;&#39; &#63;<br>Is it a array  &#63; <br>If it is array, how to work it &#63;<br>Please.....Explain it...<p>posted by Sudarsan Mandal</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634699201356307990</link>
		<pubDate>Fri, 13 Apr 2012 13:22:15 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634699201356307990</guid>
		<dc:creator>Sudarsan Mandal</dc:creator>
	</item>
	<item>
		<title>Re: Creating Arrays of Values - 09</title>
		<description>
			<![CDATA[here is the another program of palindrome...<br><br>        static void Main&#40;&#41;<br>        &#123;<br>            char&#91;&#93; n&#59;<br>            Console.WriteLine&#40;&#34;Enter a string to check palindrome or not&#34;&#41;&#59;<br>            string a &#61; Console.ReadLine&#40;&#41;&#59;<br>            <br>            n &#61; a.ToCharArray&#40;&#41;&#59;<br>            Array.Reverse&#40;n&#41;&#59;<br>            string n2 &#61; new string&#40;n&#41;&#59;<br>            &#47;&#47;string n2 &#61; n.ToString&#40;&#41;&#59;<br>            if &#40;a &#61;&#61; n2&#41;<br>                Console.WriteLine&#40;&#34;palindrome&#34;&#41;&#59;<br>            else<br>                Console.WriteLine&#40;&#34;Is not palindrome&#34;&#41;&#59;<br>        &#125;<br><br>My question is <br>&#39;string n2 &#61; new string&#40;n&#41;&#59;<br>&#47;&#47;string n2 &#61; n.ToString&#40;&#41;&#59;&#39;<br>in this two line...<br>When i write &#39;string n2 &#61; new string&#40;n&#41;&#59;&#39; it execute properly<br>but when i execute using next commented line &#39;string n2 &#61; n.ToString&#40;&#41;&#59;&#39;, it execute but not proper....why&#63;&#63;&#63;&#63;<br>please explain difference between two lines.....<br><br>your all videos are excellent ....<br><br><br><p>posted by Sudarsan Mandal</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634699225418300569</link>
		<pubDate>Fri, 13 Apr 2012 14:02:21 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634699225418300569</guid>
		<dc:creator>Sudarsan Mandal</dc:creator>
	</item>
	<item>
		<title>Re: Creating Arrays of Values - 09</title>
		<description>
			<![CDATA[<p>@<a href="/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634699225418300569">Sudarsan Mandal</a>: Lower-case 's' string is a C# data type. &nbsp;Upper-case 'S' String is a .NET object. &nbsp;The upper-case 'S' string has access to the .ToString() method. &nbsp;Hope that helps!</p><p>posted by BobTabor</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634702771618951148</link>
		<pubDate>Tue, 17 Apr 2012 16:32:41 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634702771618951148</guid>
		<dc:creator>BobTabor</dc:creator>
	</item>
	<item>
		<title>Re: Creating Arrays of Values - 09</title>
		<description>
			<![CDATA[<p>Hey Bob your VIDEOS are awesome.</p><p>Just wanted to bring to the notice of the other users:</p><p>Console.<strong>WriteLine</strong>(myChar);</p><p>and&nbsp;</p><p>Console.<strong>Write</strong>(myChar);</p><p>produce two different results. I just got into it in mistake but proved to be a great learning. Thanks once again for your videos Bob.</p><p>posted by ZohaibRaza</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634705562022594347</link>
		<pubDate>Fri, 20 Apr 2012 22:03:22 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634705562022594347</guid>
		<dc:creator>ZohaibRaza</dc:creator>
	</item>
	<item>
		<title>Re: Creating Arrays of Values - 09</title>
		<description>
			<![CDATA[<p>@<a href="/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634705562022594347">ZohaibRaza</a>: Awesome ... always experiment ... great way to push the envelope and learn more like you just did. &nbsp;Best wishes to you!</p><p>posted by BobTabor</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634717395874124264</link>
		<pubDate>Fri, 04 May 2012 14:46:27 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634717395874124264</guid>
		<dc:creator>BobTabor</dc:creator>
	</item>
	<item>
		<title>Re: Creating Arrays of Values - 09</title>
		<description>
			<![CDATA[I&#39;ve been teaching myself C&#35; for the last year, and while my progress is concrete enough to create a QuickBooks client for the business I work for, these videos are helping to fill in a lot of holes I didn&#39;t even realize I had.  Specifically, I didn&#39;t know that Arrays were so powerful...even after a year&#33;  My boss is definitely buying me a lifetime subscription to this site.<p>posted by Clinton Billedeaux</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634760575097088048</link>
		<pubDate>Sat, 23 Jun 2012 14:11:49 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634760575097088048</guid>
		<dc:creator>Clinton Billedeaux</dc:creator>
	</item>
	<item>
		<title>Re: Creating Arrays of Values - 09</title>
		<description>
			<![CDATA[<p>@<a href="/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634760575097088048">Clinton Billedeaux</a>: Awesome. &nbsp;Thanks for the nice words. &nbsp;Glad this is working for you! &nbsp;<img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-2.gif?v=c9' alt='Big Smile' /></p><p>posted by BobTabor</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634761524816842502</link>
		<pubDate>Sun, 24 Jun 2012 16:34:41 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634761524816842502</guid>
		<dc:creator>BobTabor</dc:creator>
	</item>
	<item>
		<title>Re: Creating Arrays of Values - 09</title>
		<description>
			<![CDATA[Thanks Bob for another very helpful tutorial. I have a question though when seeing that one&#58; Are arrays only one-dimensional or can they have more dimensions too &#40;like a matrix for example in mathematics&#41;&#63;<p>posted by Uli</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634767192584152925</link>
		<pubDate>Sun, 01 Jul 2012 06:00:58 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634767192584152925</guid>
		<dc:creator>Uli</dc:creator>
	</item>
	<item>
		<title>Re: Creating Arrays of Values - 09</title>
		<description>
			<![CDATA[<p>@<a href="/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634767192584152925">Uli</a>: &nbsp;Sorry I missed this post ... you can have multi-dimensional and even sparse arrays just like in other languages.</p><p><a href="http://msdn.microsoft.com/en-us/library/2yd9wwz4(v=vs.71">http&#58;&#47;&#47;msdn.microsoft.com&#47;en-us&#47;library&#47;2yd9wwz4&#40;v&#61;vs.71</a>).aspx</p><p>posted by BobTabor</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634776222661220794</link>
		<pubDate>Wed, 11 Jul 2012 16:51:06 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634776222661220794</guid>
		<dc:creator>BobTabor</dc:creator>
	</item>
	<item>
		<title>Re: Creating Arrays of Values - 09</title>
		<description>
			<![CDATA[Hi Bob,<br><br>Great series for someone fresh to the world of c&#35; and even programming as a whole such as myself&#33;<br><br>Is there a specific need for the &#39;foreach&#39; method in this example such as a best practice&#63; The code seems to yield the same result when I experimented and ran without it &#40;which seems logical as it has already stored in and array and reversed it&#41;&#63;<p>posted by Bandy</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634782393738694046</link>
		<pubDate>Wed, 18 Jul 2012 20:16:13 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634782393738694046</guid>
		<dc:creator>Bandy</dc:creator>
	</item>
	<item>
		<title>Re: Creating Arrays of Values - 09</title>
		<description>
			<![CDATA[Hi Bob,<br><br>Great series for someone fresh to the world of c&#35; and even programming as a whole such as myself&#33;<br><br>Is there a specific need for the &#39;foreach&#39; method in this example such as a best practice&#63; The code seems to yield the same result when I experimented and ran without it &#40;which seems logical as it has already stored in and array and reversed it&#41;&#63;<p>posted by Bandy</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634782403138873212</link>
		<pubDate>Wed, 18 Jul 2012 20:31:53 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634782403138873212</guid>
		<dc:creator>Bandy</dc:creator>
	</item>
	<item>
		<title>Re: Creating Arrays of Values - 09</title>
		<description>
			<![CDATA[<p>@<a href="/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634782403138873212">Bandy</a>: Hi! &nbsp;When working with little demo apps, it is sometimes hard to see the need for a given language element. &nbsp;I'm working from memory here, but often I would use a for loop, not a foreach when working with arrays. &nbsp;I would use a foreach when working with collections, and I'm sure I'll be demonstrating that later in this series. &nbsp;So, for now, just be aware that there's several means of iterating through a grouping of data (like an array or collection) and later you can see better usage patterns for each. &nbsp;Hope that helps!</p><p>posted by BobTabor</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634782567169355262</link>
		<pubDate>Thu, 19 Jul 2012 01:05:16 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634782567169355262</guid>
		<dc:creator>BobTabor</dc:creator>
	</item>
	<item>
		<title>Re: Creating Arrays of Values - 09</title>
		<description>
			<![CDATA[<p>I'm following the lessons and most of what I see I have seen before.&nbsp; Let me qualify that statement.&nbsp; Last programming I did was in College some 20 years ago and using Pascal 5.5.&nbsp; With the Arrays lesson I now need to really pay attention.&nbsp; My goal is to modify the Sophia Bot application which was written in 2007 by James Ashley and targeted the .Net 3.0 environment.&nbsp; I am trying to use it as a voice interface for a Robot.&nbsp; I am using VS 2010 and will be using the MS Speech SDK 11 because I am using the MS Kinect and there will be a lot of rules for the grammers.&nbsp; The original program used the MS SAPI 5.0 TTS.&nbsp; I have 2 questions: 1. Are the Arrays in C# infinite or is there a limit to the number of objects the Array&nbsp;can hold and is there a limit to the object size within the Array?.&nbsp;2. I should have asked this at the beginning lesson but how do I determine which application to use when I start up VS 2010?&nbsp; There are so many choices.&nbsp; I really enjoy the lessons and you are doing a great job!!!!&nbsp; Thanks for the hard work that was put into this series.</p><p>posted by smithdavidp</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634788118325772036</link>
		<pubDate>Wed, 25 Jul 2012 11:17:12 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634788118325772036</guid>
		<dc:creator>smithdavidp</dc:creator>
	</item>
	<item>
		<title>Re: Creating Arrays of Values - 09</title>
		<description>
			<![CDATA[<p>@<a href="/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634788118325772036">smithdavidp</a>: (1) Check this out:</p><p><a href="http://stackoverflow.com/questions/1391672/what-is-the-maximum-size-that-an-array-can-hold">http&#58;&#47;&#47;stackoverflow.com&#47;questions&#47;1391672&#47;what-is-the-maximum-size-that-an-array-can-hold</a></p><p>(2) I would suggest picking either the general development settings or settings specific to C#. &nbsp;I know there are differences in window placement and perhaps some keyboard shortcuts. &nbsp;There's not a lot of help on MSDN for this dialog (at least, that I could find). &nbsp;Check this out:<br><br><a href="http://msdn.microsoft.com/en-us/library/ms165473(v=vs.90">http&#58;&#47;&#47;msdn.microsoft.com&#47;en-us&#47;library&#47;ms165473&#40;v&#61;vs.90</a>)<br><br>Good luck!</p><p>posted by BobTabor</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634791936655910439</link>
		<pubDate>Sun, 29 Jul 2012 21:21:05 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634791936655910439</guid>
		<dc:creator>BobTabor</dc:creator>
	</item>
	<item>
		<title>Re: Creating Arrays of Values - 09</title>
		<description>
			<![CDATA[I just started learning C&#35; for my Programming Fundamentals class and I have to say these videos are helping me so much more than long winded text books. You explain things clearly and go over them several times and what i like best is you suggest where there are hiccups that alot of coders have which shows you really know your stuff.  Thanks so very much, your videos are a lifesaver. &#58;&#41;<p>posted by Jeff</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634809177584830074</link>
		<pubDate>Sat, 18 Aug 2012 20:15:58 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634809177584830074</guid>
		<dc:creator>Jeff</dc:creator>
	</item>
	<item>
		<title>Re: Creating Arrays of Values - 09</title>
		<description>
			<![CDATA[<p>@<a href="/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634809177584830074">Jeff</a>: <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif?v=c9' alt='Smiley' /> Cool, thanks for writing Jeff. &nbsp;Made my day.</p><p>posted by BobTabor</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634810721232449569</link>
		<pubDate>Mon, 20 Aug 2012 15:08:43 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634810721232449569</guid>
		<dc:creator>BobTabor</dc:creator>
	</item>
	<item>
		<title>Re: Creating Arrays of Values - 09</title>
		<description>
			<![CDATA[<p>i want to now about jagged array. if u can have a video tutorial please upload that &nbsp; &nbsp;</p><p>posted by ashishmangla73</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634823598708617390</link>
		<pubDate>Tue, 04 Sep 2012 12:51:10 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634823598708617390</guid>
		<dc:creator>ashishmangla73</dc:creator>
	</item>
	<item>
		<title>Re: Creating Arrays of Values - 09</title>
		<description>
			<![CDATA[I am having problems with &#34;Array.Reverse&#34; and unable to reverse the string.<br>I get the following message &#34;Error 2 The type or namespace name &#39;Reverse&#39; does not exist in the namespace &#39;Array&#39; &#40;are you missing an assembly reference&#63;&#41;&#34;<br><br>This is specifically regarding your exercise at 11&#58;17<p>posted by Jay</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634841669580028292</link>
		<pubDate>Tue, 25 Sep 2012 10:49:18 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634841669580028292</guid>
		<dc:creator>Jay</dc:creator>
	</item>
	<item>
		<title>Re: Creating Arrays of Values - 09</title>
		<description>
			<![CDATA[<p>@<a href="/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634841669580028292">Jay</a>: Do you have a using statement at the very top of your code?<br><br>using System;</p><p>That's the only scenario I can foresee where that would happen. &nbsp;Also, make sure everything is spelled and capitalized exactly like I have it in my code. &nbsp;Good luck!</p><p>posted by BobTabor</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634864445970032189</link>
		<pubDate>Sun, 21 Oct 2012 19:29:57 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634864445970032189</guid>
		<dc:creator>BobTabor</dc:creator>
	</item>
	<item>
		<title>Re: Creating Arrays of Values - 09</title>
		<description>
			<![CDATA[&#64;Jay and &#64;BobTabor&#58; well i&#39;m new to C&#35;, and i&#39;m watching videos, as fast as i can understand the situation of jay it&#39;s better allways to declare statements like BobTabor said on the issue that you Jay got&#58;<br><br>using System&#59;<br><br>But it&#39;s not in need, but it&#39;s good practice to add in top of your code for later use, but you can also use library system like that for example&#58;<br><br>System.Console.Writeline&#40;&#41;&#59;<br><br>But of course it makes more writing as BobTabor said, so better declare it at top of a file, if i&#39;m wrong correct me &#58;&#41;<br>And thanks for videos, because i&#39;m learning C3 that i need in my job. It&#39;s a challenge to me &#58;&#41;<p>posted by Arnas</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634928987155231600</link>
		<pubDate>Fri, 04 Jan 2013 12:18:35 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634928987155231600</guid>
		<dc:creator>Arnas</dc:creator>
	</item>
	<item>
		<title>Re: Creating Arrays of Values - 09</title>
		<description>
			<![CDATA[hi Bob,<br><br>Thanks for sharing your knowledge and understanding with the world&#33;&#33;&#33;<br><br><p>posted by ismail</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634933253329455384</link>
		<pubDate>Wed, 09 Jan 2013 10:48:52 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634933253329455384</guid>
		<dc:creator>ismail</dc:creator>
	</item>
	<item>
		<title>Re: Creating Arrays of Values - 09</title>
		<description>
			<![CDATA[Hi Bob, again many thanks for teaching V3. I noticed you saved all as you go. As we develop a program we want to keep the old ones as reminder. How can I save the corrected program as a new project&#63;<br>Thks a bunch.<p>posted by SenCan</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634938711201091167</link>
		<pubDate>Tue, 15 Jan 2013 18:25:20 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634938711201091167</guid>
		<dc:creator>SenCan</dc:creator>
	</item>
	<item>
		<title>Re: Creating Arrays of Values - 09</title>
		<description>
			<![CDATA[Love your videos and great job at explaining. Not sure if there is anything I can do becaue I am having a hard time seeing the text on your screen so I have to download code just to follow along &#63;&#63;<p>posted by Tom</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634944666822983428</link>
		<pubDate>Tue, 22 Jan 2013 15:51:22 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634944666822983428</guid>
		<dc:creator>Tom</dc:creator>
	</item>
	<item>
		<title>Re: Creating Arrays of Values - 09</title>
		<description>
			<![CDATA[wow. really love you work, looks like im the first Nigerian hear, thanks a lot<p>posted by anselm fowel</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634944710300848936</link>
		<pubDate>Tue, 22 Jan 2013 17:03:50 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634944710300848936</guid>
		<dc:creator>anselm fowel</dc:creator>
	</item>
	<item>
		<title>Re: Creating Arrays of Values - 09</title>
		<description>
			<![CDATA[Bob,<br><br>Fantastic video series&#33; I&#39;m picking things up much faster than I anticipated. I really appreciate them.<p>posted by Andy</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634973469922414285</link>
		<pubDate>Sun, 24 Feb 2013 23:56:32 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634973469922414285</guid>
		<dc:creator>Andy</dc:creator>
	</item>
	<item>
		<title>Re: Creating Arrays of Values - 09</title>
		<description>
			<![CDATA[hi thanks for all the lessons<br>however you seem to be typing a bunch of statements etc....then numbers without explaining step by step what this serves purpose wise<br>for example name &#91;&#93; then number &#40;number&#41; one will get lost completelty as it is not made clear where exactly when to put this i.e. can you put these sentences anywhere&#63;<p>posted by beavis</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634998516044534185</link>
		<pubDate>Mon, 25 Mar 2013 23:40:04 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c634998516044534185</guid>
		<dc:creator>beavis</dc:creator>
	</item>
	<item>
		<title>Re: Creating Arrays of Values - 09</title>
		<description>
			<![CDATA[Great Series, i have gone through C&#35; and HTML5 series. it saves my precious hours which i needed to spend reading books.<p>posted by Vimal</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c635006615988884598</link>
		<pubDate>Thu, 04 Apr 2013 08:39:58 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c635006615988884598</guid>
		<dc:creator>Vimal</dc:creator>
	</item>
	<item>
		<title>Re: Creating Arrays of Values - 09</title>
		<description>
			<![CDATA[Another resource for arrays is: <a href="http://msdn.microsoft.com/es-mx/library/2yd9wwz4(v=vs.80).aspx">http&#58;&#47;&#47;msdn.microsoft.com&#47;es-mx&#47;library&#47;2yd9wwz4&#40;v&#61;vs.80&#41;.aspx</a> Otro recurso para generar arreglos es: <a href="http://msdn.microsoft.com/es-mx/library/2yd9wwz4(v=vs.80).aspx">http&#58;&#47;&#47;msdn.microsoft.com&#47;es-mx&#47;library&#47;2yd9wwz4&#40;v&#61;vs.80&#41;.aspx</a><p>posted by jambriz</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c635025214234563624</link>
		<pubDate>Thu, 25 Apr 2013 21:17:03 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c635025214234563624</guid>
		<dc:creator>jambriz</dc:creator>
	</item>
	<item>
		<title>Re: Creating Arrays of Values - 09</title>
		<description>
			<![CDATA[<p>Los siguientes ejemplos son en español sobre arreglos unidimensionales y bidimensionales</p><p>Another example using a didimensional array:</p><p><a href="https://www.youtube.com/watch?v=Pn1VKYvnp_A">https://www.youtube.com/watch?v=Pn1VKYvnp_A</a></p><p>posted by jambriz</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c635025585506758238</link>
		<pubDate>Fri, 26 Apr 2013 07:35:50 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c635025585506758238</guid>
		<dc:creator>jambriz</dc:creator>
	</item>
	<item>
		<title>Re: Creating Arrays of Values - 09</title>
		<description>
			<![CDATA[<p>El siguiente ejemplo de código está en español sobre arreglos unidimensionales en C#</p><p>Example of code using a simple array:</p><p><a href="https://www.youtube.com/watch?v=Wkenbl57aws">https://www.youtube.com/watch?v=Wkenbl57aws</a></p><p>&nbsp;</p><p>posted by jambriz</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c635025585925826940</link>
		<pubDate>Fri, 26 Apr 2013 07:36:32 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners/Creating-Arrays-of-Values-09#c635025585925826940</guid>
		<dc:creator>jambriz</dc:creator>
	</item>
</channel>
</rss>