<?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 and Calling Simple Helper Methods - Day 1 - Part 15</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Creating-and-Calling-Simple-Helper-Methods/RSS"></atom:link>
	<image>
		<url>http://ecn.channel9.msdn.com/o9/ch9/42c8/4b576b6a-3f75-461f-b2cb-9e10015e42c8/day01part15_100_ch9.jpg</url>
		<title>Channel 9 - Creating and Calling Simple Helper Methods - Day 1 - Part 15</title>
		<link></link>
	</image>
	<description> As Bob has already said several times throughout Day 1, methods are simply named blocks of code. Since methods have names, you can call them by name and their code blocks will execute. This video explains when to do this, how to create and call the method, and how to both pass values into a method and retrieve values from a method. Download the source code in c# Download the source code in VB.Net </description>
	<link></link>
	<language>en</language>
	<pubDate>Wed, 22 May 2013 16:53:34 GMT</pubDate>
	<lastBuildDate>Wed, 22 May 2013 16:53:34 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<item>
		<title>Re: Creating and Calling Simple Helper Methods - Day 1 - Part 15</title>
		<description>
			<![CDATA[Very nicely done - thanks :)<p>posted by eostarman</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Creating-and-Calling-Simple-Helper-Methods#c634265698630000000</link>
		<pubDate>Sun, 28 Nov 2010 19:37:43 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Creating-and-Calling-Simple-Helper-Methods#c634265698630000000</guid>
		<dc:creator>eostarman</dc:creator>
	</item>
	<item>
		<title>Re: Creating and Calling Simple Helper Methods - Day 1 - Part 15</title>
		<description>
			<![CDATA[ <p>awesome!!</p><p>posted by optimus</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Creating-and-Calling-Simple-Helper-Methods#c634269388660000000</link>
		<pubDate>Fri, 03 Dec 2010 02:07:46 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Creating-and-Calling-Simple-Helper-Methods#c634269388660000000</guid>
		<dc:creator>optimus</dc:creator>
	</item>
	<item>
		<title>Re: Creating and Calling Simple Helper Methods - Day 1 - Part 15</title>
		<description>
			<![CDATA[You really knows how to explain this stuff in a very efficient way. C# is easier than I thought, since we master the syntax everything is bread and butter. Thanks, Bob.<p>posted by eddy</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Creating-and-Calling-Simple-Helper-Methods#c634292942010000000</link>
		<pubDate>Thu, 30 Dec 2010 08:23:21 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Creating-and-Calling-Simple-Helper-Methods#c634292942010000000</guid>
		<dc:creator>eddy</dc:creator>
	</item>
	<item>
		<title>Re: Creating and Calling Simple Helper Methods - Day 1 - Part 15</title>
		<description>
			<![CDATA[ <p>Nicely done... </p><p>posted by Xtianus</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Creating-and-Calling-Simple-Helper-Methods#c634311869750000000</link>
		<pubDate>Fri, 21 Jan 2011 06:09:35 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Creating-and-Calling-Simple-Helper-Methods#c634311869750000000</guid>
		<dc:creator>Xtianus</dc:creator>
	</item>
	<item>
		<title>Re: Creating and Calling Simple Helper Methods - Day 1 - Part 15</title>
		<description>
			<![CDATA[I keep getting "Hello World, (0)" when I hit the button. What am I doing wrong? Here is my code (the video resolution isn't clear enough for me to tell if I am using the correct characters) :<br /> <br />{            textBlock1.Text = superSecretFormula("Bob");        }        private string superSecretFormula(string myName)        {            return string.Format("Hello World, (0)!", myName);        }<br /> <p>posted by Pairoj</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Creating-and-Calling-Simple-Helper-Methods#c634342666850000000</link>
		<pubDate>Fri, 25 Feb 2011 21:38:05 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Creating-and-Calling-Simple-Helper-Methods#c634342666850000000</guid>
		<dc:creator>Pairoj</dc:creator>
	</item>
	<item>
		<title>Re: Creating and Calling Simple Helper Methods - Day 1 - Part 15</title>
		<description>
			<![CDATA[@Pairoj: It looks like you put parenthesis around your zero instead of curly brackets, which I suppose would mean the program sees the zero as nothing special. You would want your final line to be: return string.Format("Hello World, {0}!", myName);<p>posted by Jonathan</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Creating-and-Calling-Simple-Helper-Methods#c634343452570000000</link>
		<pubDate>Sat, 26 Feb 2011 19:27:37 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Creating-and-Calling-Simple-Helper-Methods#c634343452570000000</guid>
		<dc:creator>Jonathan</dc:creator>
	</item>
	<item>
		<title>Re: Creating and Calling Simple Helper Methods - Day 1 - Part 15</title>
		<description>
			<![CDATA[What's the program your using to record on screen?<p>posted by Griffin Wiebel</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Creating-and-Calling-Simple-Helper-Methods#c634371304770000000</link>
		<pubDate>Thu, 31 Mar 2011 01:07:57 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Creating-and-Calling-Simple-Helper-Methods#c634371304770000000</guid>
		<dc:creator>Griffin Wiebel</dc:creator>
	</item>
	<item>
		<title>Re: Creating and Calling Simple Helper Methods - Day 1 - Part 15</title>
		<description>
			<![CDATA[&#64;Griffin&#58; I think that is Camtasia Studio.<p>posted by Quang</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Creating-and-Calling-Simple-Helper-Methods#c634378358290000000</link>
		<pubDate>Fri, 08 Apr 2011 05:03:49 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Creating-and-Calling-Simple-Helper-Methods#c634378358290000000</guid>
		<dc:creator>Quang</dc:creator>
	</item>
</channel>
</rss>