<?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 - Declaring Variables and Assigning Values - Day 1 - Part 9</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Declaring-Variables-and-Assigning-Values/RSS"></atom:link>
	<image>
		<url>http://ecn.channel9.msdn.com/o9/ch9/5dd2/1cb68af3-cf20-423b-9328-9e10015d5dd2/day01part9_100_ch9.jpg</url>
		<title>Channel 9 - Declaring Variables and Assigning Values - Day 1 - Part 9</title>
		<link></link>
	</image>
	<description> We now focus on learning the C# programming language. In this video, Bob explains variables and data types, as well as setting and retrieving variable values. Download the source code in c# Download the source code in VB.Net </description>
	<link></link>
	<language>en</language>
	<pubDate>Sun, 26 May 2013 04:20:12 GMT</pubDate>
	<lastBuildDate>Sun, 26 May 2013 04:20:12 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<item>
		<title>Re: Declaring Variables and Assigning Values - Day 1 - Part 9</title>
		<description>
			<![CDATA[ <p>Good video but I ran into a problem. When you typed y.ToString square braces appeared at the end [ ] but that doesnt work for me, it does work however if I use the curved braces ( ), I don't understand why</p><p>posted by Mintydog</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Declaring-Variables-and-Assigning-Values#c634263158610000000</link>
		<pubDate>Thu, 25 Nov 2010 21:04:21 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Declaring-Variables-and-Assigning-Values#c634263158610000000</guid>
		<dc:creator>Mintydog</dc:creator>
	</item>
	<item>
		<title>Re: Declaring Variables and Assigning Values - Day 1 - Part 9</title>
		<description>
			<![CDATA[I was also JUST watching the video and I watched the same thing and was about to comment on it. Really cool but can you please explain the () at the end and how, if we had not seen it we would have known to put the () at the end of the line.<p>posted by Digital Dave</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Declaring-Variables-and-Assigning-Values#c634266731950000000</link>
		<pubDate>Tue, 30 Nov 2010 00:19:55 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Declaring-Variables-and-Assigning-Values#c634266731950000000</guid>
		<dc:creator>Digital Dave</dc:creator>
	</item>
	<item>
		<title>Re: Declaring Variables and Assigning Values - Day 1 - Part 9</title>
		<description>
			<![CDATA[[quote]<br />1 day&nbsp;ago<br />I was also JUST watching the video and I watched the same thing and was about to comment on it. Really cool but can you please explain the () at the end and how, if we had not seen it we would have known to put the () at the end of the line.<br /><br />[/quote]<br />It's part of the syntax of C# but you really didn't need to know that because when you put the . after y the intellisense auto-completion added the () to the end after you selected .ToString(). &nbsp;Visual Studio would have told you that this was a problem as well. &nbsp;I think it even goes so far as to tell you that it expects parentheses.<p>posted by Tony</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Declaring-Variables-and-Assigning-Values#c634268427210000000</link>
		<pubDate>Wed, 01 Dec 2010 23:25:21 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Declaring-Variables-and-Assigning-Values#c634268427210000000</guid>
		<dc:creator>Tony</dc:creator>
	</item>
	<item>
		<title>Re: Declaring Variables and Assigning Values - Day 1 - Part 9</title>
		<description>
			<![CDATA[ <p>@<a href="/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Declaring-Variables-and-Assigning-Values#c634263158610000000">Mintydog</a>: brackets in a C style language like c# implies an index to an array or collection.&nbsp; so if I had an array of integers called <strong>foo </strong>that has 10 objects, I'd go</p><p><pre class="brush: csharp">int firstInt = foo[0]; // returns first
int fifthInt = foo[4]; // returns 5th in array</pre></p><p>Now () is typically for methods and&nbsp;constructors.&nbsp; so if I have an a string, I'd go</p><p><pre class="brush: csharp">string myString = new string();</pre></p><p>If I have an integer and wanted to change it into a string, I have to cast it.&nbsp; Since .ToString is a method, I have to do use () since some methods allow you to pass stuff in.&nbsp; With (), I'm passing in nothing.</p><p><pre class="brush: csharp">int five = 5;
string theNumberFive = five.ToString();</pre></p><p>posted by Clint</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Declaring-Variables-and-Assigning-Values#c634269632650000000</link>
		<pubDate>Fri, 03 Dec 2010 08:54:25 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Declaring-Variables-and-Assigning-Values#c634269632650000000</guid>
		<dc:creator>Clint</dc:creator>
	</item>
	<item>
		<title>Re: Declaring Variables and Assigning Values - Day 1 - Part 9</title>
		<description>
			<![CDATA[He did infact use 'toString()'. It is because of the video quality that it appeared as '[]'. :)<p>posted by Joseph Clover</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Declaring-Variables-and-Assigning-Values#c634320247490000000</link>
		<pubDate>Sun, 30 Jan 2011 22:52:29 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Declaring-Variables-and-Assigning-Values#c634320247490000000</guid>
		<dc:creator>Joseph Clover</dc:creator>
	</item>
	<item>
		<title>Re: Declaring Variables and Assigning Values - Day 1 - Part 9</title>
		<description>
			<![CDATA[ <p>@<a href="/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Declaring-Variables-and-Assigning-Values#c634320247490000000">Joseph Clover</a>: Ah, we do have the high quality versions and the source code examples for download as well for each video</p><p>posted by Clint</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Declaring-Variables-and-Assigning-Values#c634322630320000000</link>
		<pubDate>Wed, 02 Feb 2011 17:03:52 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Declaring-Variables-and-Assigning-Values#c634322630320000000</guid>
		<dc:creator>Clint</dc:creator>
	</item>
	<item>
		<title>Re: Declaring Variables and Assigning Values - Day 1 - Part 9</title>
		<description>
			<![CDATA[@Clint: Where can I find the high quality versions. The quality is pathetic in these. Can't read a word!<p>posted by Kavitaj</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Declaring-Variables-and-Assigning-Values#c634340964350000000</link>
		<pubDate>Wed, 23 Feb 2011 22:20:35 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Declaring-Variables-and-Assigning-Values#c634340964350000000</guid>
		<dc:creator>Kavitaj</dc:creator>
	</item>
	<item>
		<title>Re: Declaring Variables and Assigning Values - Day 1 - Part 9</title>
		<description>
			<![CDATA[where can i change the settings to have these &#40;&#41; after ToString,too&#63;<p>posted by Miso</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Declaring-Variables-and-Assigning-Values#c634408346000000000</link>
		<pubDate>Thu, 12 May 2011 22:03:20 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Declaring-Variables-and-Assigning-Values#c634408346000000000</guid>
		<dc:creator>Miso</dc:creator>
	</item>
	<item>
		<title>Re: Declaring Variables and Assigning Values - Day 1 - Part 9</title>
		<description>
			<![CDATA[This is too funny&#33;<p>posted by TechieGirl1</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Declaring-Variables-and-Assigning-Values#c634438795600000000</link>
		<pubDate>Fri, 17 Jun 2011 03:52:40 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Declaring-Variables-and-Assigning-Values#c634438795600000000</guid>
		<dc:creator>TechieGirl1</dc:creator>
	</item>
	<item>
		<title>Re: Declaring Variables and Assigning Values - Day 1 - Part 9</title>
		<description>
			<![CDATA[Clint,<br>  Just wanted to tell you I think you are doing a fantastic job with these videos. Thanks for putting these together for everyone.<br><br>TechieGirl1<p>posted by TechieGirl1</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Declaring-Variables-and-Assigning-Values#c634438797250000000</link>
		<pubDate>Fri, 17 Jun 2011 03:55:25 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Declaring-Variables-and-Assigning-Values#c634438797250000000</guid>
		<dc:creator>TechieGirl1</dc:creator>
	</item>
	<item>
		<title>Re: Declaring Variables and Assigning Values - Day 1 - Part 9</title>
		<description>
			<![CDATA[Totally new to all this but downloaded the latest tools &#40;the beta&#41; and it seems that the conventions for defining variables is different than the video.  Using the Dim string instead of Int&#63;<br><br>I&#39;m confused.  Can anyone help&#63;<br><p>posted by Brady</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Declaring-Variables-and-Assigning-Values#c634448177440000000</link>
		<pubDate>Tue, 28 Jun 2011 00:29:04 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Declaring-Variables-and-Assigning-Values#c634448177440000000</guid>
		<dc:creator>Brady</dc:creator>
	</item>
	<item>
		<title>Re: Declaring Variables and Assigning Values - Day 1 - Part 9</title>
		<description>
			<![CDATA[Again, a total newbie but it seems like when I try to edit actions on a control I&#39;m working in VB and he&#39;s working in C&#35;.  Does that make sense and how do I switch&#63;<p>posted by Brady</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Declaring-Variables-and-Assigning-Values#c634448184860000000</link>
		<pubDate>Tue, 28 Jun 2011 00:41:26 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Declaring-Variables-and-Assigning-Values#c634448184860000000</guid>
		<dc:creator>Brady</dc:creator>
	</item>
	<item>
		<title>Re: Declaring Variables and Assigning Values - Day 1 - Part 9</title>
		<description>
			<![CDATA[Nevermind, I&#39;m a moron.  Figured it out.<p>posted by Brady</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Declaring-Variables-and-Assigning-Values#c634448185890000000</link>
		<pubDate>Tue, 28 Jun 2011 00:43:09 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Declaring-Variables-and-Assigning-Values#c634448185890000000</guid>
		<dc:creator>Brady</dc:creator>
	</item>
	<item>
		<title>Re: Declaring Variables and Assigning Values - Day 1 - Part 9</title>
		<description>
			<![CDATA[ <p>Thanks All these videos are great tutorials!</p><p>posted by deva_p</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Declaring-Variables-and-Assigning-Values#c634476974950000000</link>
		<pubDate>Sun, 31 Jul 2011 08:24:55 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Declaring-Variables-and-Assigning-Values#c634476974950000000</guid>
		<dc:creator>deva_p</dc:creator>
	</item>
	<item>
		<title>Re: Declaring Variables and Assigning Values - Day 1 - Part 9</title>
		<description>
			<![CDATA[<p>Good video, thanks.</p><p>posted by BrunoMaestro</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Declaring-Variables-and-Assigning-Values#c634533857455182637</link>
		<pubDate>Wed, 05 Oct 2011 04:29:05 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Declaring-Variables-and-Assigning-Values#c634533857455182637</guid>
		<dc:creator>BrunoMaestro</dc:creator>
	</item>
	<item>
		<title>Re: Declaring Variables and Assigning Values - Day 1 - Part 9</title>
		<description>
			<![CDATA[First off excellent video&#39;s, thanks for posting them.I am a total norvice, can you tell me how you convert doubles to string please.<br><br>Thank you in advance.<br><br>Regards Phil<p>posted by Philip Goff</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Declaring-Variables-and-Assigning-Values#c634576932519983356</link>
		<pubDate>Thu, 24 Nov 2011 01:00:51 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Declaring-Variables-and-Assigning-Values#c634576932519983356</guid>
		<dc:creator>Philip Goff</dc:creator>
	</item>
</channel>
</rss>