<?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 - Understanding and Creating Classes - Day 2 - Part 3</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Understanding-and-Creating-Classes/RSS"></atom:link>
	<image>
		<url>http://ecn.channel9.msdn.com/o9/ch9/c33b/98634a6a-a098-4164-86dd-9e170165c33b/day02part3_100_ch9.jpg</url>
		<title>Channel 9 - Understanding and Creating Classes - Day 2 - Part 3</title>
		<link></link>
	</image>
	<description> Practically all work in C# and Silverlight applications involves classes, so in this video we examine the basics of classes, including how classes are defined, their major parts, and how to create new class instances while generally discussing how to work with classes in your applications. Download the source code in c# Download the source code in VB.Net </description>
	<link></link>
	<language>en</language>
	<pubDate>Thu, 23 May 2013 21:40:16 GMT</pubDate>
	<lastBuildDate>Thu, 23 May 2013 21:40:16 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<item>
		<title>Re: Understanding and Creating Classes - Day 2 - Part 3</title>
		<description>
			<![CDATA[ <p>Great video bob, it was.....class!. Sorry I had to haha.</p><p>One thing I dont get is when you created the methods. What is {get; set; } all about?</p><p>Cheers</p><p>posted by Mintydog</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Understanding-and-Creating-Classes#c634268316960000000</link>
		<pubDate>Wed, 01 Dec 2010 20:21:36 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Understanding-and-Creating-Classes#c634268316960000000</guid>
		<dc:creator>Mintydog</dc:creator>
	</item>
	<item>
		<title>Re: Understanding and Creating Classes - Day 2 - Part 3</title>
		<description>
			<![CDATA[ <p>@<a href="/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Understanding-and-Creating-Classes#c634268316960000000">Mintydog</a>: Few things, what bob did is actually a property, not a method.</p><p>Why he did it is called <a href="http://en.wikipedia.org/wiki/Mutator_method">mutator </a>and it is part of&nbsp;encapsulation.&nbsp; It is one of the concepts of object oriented programming.&nbsp; You have public&nbsp;and&nbsp;private&nbsp;methods and properties (there are more but I'm simplifying).&nbsp; Properties have get / set so you can do addtional work when something attempts to fetch or set the value!&nbsp; This becomes extremely useful in more complex programs.&nbsp; The get; set; is actually short hand for doing this:</p><p><pre class="brush: csharp">// short hand
public int FirstVar { get; set; }

// long hand
public int SecondVar
{
  get { return _secondVar; }
  set { _secondVar = value; }
}
private int _secondVar;</pre></p><p>posted by Clint</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Understanding-and-Creating-Classes#c634269643930000000</link>
		<pubDate>Fri, 03 Dec 2010 09:13:13 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Understanding-and-Creating-Classes#c634269643930000000</guid>
		<dc:creator>Clint</dc:creator>
	</item>
	<item>
		<title>Re: Understanding and Creating Classes - Day 2 - Part 3</title>
		<description>
			<![CDATA[To make that&nbsp; more understandable the set can send a value in this case an int (meaning a number value so _secondVar = value you could write _secondVar = 10<br />The get returns a value so when you think about it, get means just that, get the value and set means set the value. Note you do not have to do both set and get you can just get the value as you may only want the return value and return means just that return the value i want from the class car to me. So after you get the return value SecondVar you may want to display the result, so in the main class you might have a textbox named mytextbox and you would write , mytextbox.Text = SecondVar and this will display the value in yout textbox.<p>posted by Sim</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Understanding-and-Creating-Classes#c634312341610000000</link>
		<pubDate>Fri, 21 Jan 2011 19:16:01 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Understanding-and-Creating-Classes#c634312341610000000</guid>
		<dc:creator>Sim</dc:creator>
	</item>
	<item>
		<title>Re: Understanding and Creating Classes - Day 2 - Part 3</title>
		<description>
			<![CDATA[ <p>I see the discussion here is good for after the class talk... </p><p>Moreover, I see that a little bit of an issue or problem for absolute begginners is that this might be a little too assuming/accelerated for absolute begginers... I have purchased a C# book so hopefully if I read that for a couple days and then come back to these lessons they might actually make a bit more sense i total.&nbsp; I feel that at any part I move on... even when i know how to do sometning, that if I do not understand it it is just going to hurt me in the long run... </p><p>posted by Xtianus</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Understanding-and-Creating-Classes#c634312681240000000</link>
		<pubDate>Sat, 22 Jan 2011 04:42:04 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Understanding-and-Creating-Classes#c634312681240000000</guid>
		<dc:creator>Xtianus</dc:creator>
	</item>
	<item>
		<title>Re: Understanding and Creating Classes - Day 2 - Part 3</title>
		<description>
			<![CDATA[ <p>&nbsp;</p><div id="TranslationOutput" class="mttextarea" dir="ltr"><br><div lang="en">Hello and thank you for this series of <br>videos.</div><div lang="en">&nbsp;</div><div lang="en">Thanks a greeting.</div></div><p>&nbsp;</p><p>posted by redtitle</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Understanding-and-Creating-Classes#c634315701850000000</link>
		<pubDate>Tue, 25 Jan 2011 16:36:25 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Understanding-and-Creating-Classes#c634315701850000000</guid>
		<dc:creator>redtitle</dc:creator>
	</item>
	<item>
		<title>Re: Understanding and Creating Classes - Day 2 - Part 3</title>
		<description>
			<![CDATA[ <p>Thanks and &nbsp;greetings!</p><p>posted by minompi</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Understanding-and-Creating-Classes#c634334847450000000</link>
		<pubDate>Wed, 16 Feb 2011 20:25:45 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Understanding-and-Creating-Classes#c634334847450000000</guid>
		<dc:creator>minompi</dc:creator>
	</item>
	<item>
		<title>Re: Understanding and Creating Classes - Day 2 - Part 3</title>
		<description>
			<![CDATA[ <p>This was great!</p><p>posted by WayneHoggett</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Understanding-and-Creating-Classes#c634385407040000000</link>
		<pubDate>Sat, 16 Apr 2011 08:51:44 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Understanding-and-Creating-Classes#c634385407040000000</guid>
		<dc:creator>WayneHoggett</dc:creator>
	</item>
	<item>
		<title>Re: Understanding and Creating Classes - Day 2 - Part 3</title>
		<description>
			<![CDATA[all links are broken<br><p>posted by selva</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Understanding-and-Creating-Classes#c634412480800000000</link>
		<pubDate>Tue, 17 May 2011 16:54:40 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Understanding-and-Creating-Classes#c634412480800000000</guid>
		<dc:creator>selva</dc:creator>
	</item>
	<item>
		<title>Re: Understanding and Creating Classes - Day 2 - Part 3</title>
		<description>
			<![CDATA[Great Video&#39;s&#33;<br><br>This is all C&#35; and XAML&#40;Design&#41;..but why it is named Silverlight applications for the Windows Phone 7&#63;<p>posted by keil</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Understanding-and-Creating-Classes#c634435685570000000</link>
		<pubDate>Mon, 13 Jun 2011 13:29:17 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Understanding-and-Creating-Classes#c634435685570000000</guid>
		<dc:creator>keil</dc:creator>
	</item>
</channel>
</rss>