<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Code in C#</title>
	<atom:link href="http://codeincsharp.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://codeincsharp.wordpress.com</link>
	<description>Learn How to Program in C#</description>
	<lastBuildDate>Tue, 20 Oct 2009 17:30:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='codeincsharp.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Code in C#</title>
		<link>http://codeincsharp.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://codeincsharp.wordpress.com/osd.xml" title="Code in C#" />
	<atom:link rel='hub' href='http://codeincsharp.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Using Variables in C#</title>
		<link>http://codeincsharp.wordpress.com/2009/10/20/using-variables-in-c/</link>
		<comments>http://codeincsharp.wordpress.com/2009/10/20/using-variables-in-c/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 17:30:29 +0000</pubDate>
		<dc:creator>codeincsharp</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Variables]]></category>

		<guid isPermaLink="false">http://codeincsharp.wordpress.com/?p=79</guid>
		<description><![CDATA[Variables provide a temporary storage location for data that will be needed during the lifespan of your C# application. Variables can contain different types of data, and the values assigned to these variables are instances of a specific type. For example, you may have one variable that holds numbers, and another that holds string. Both [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codeincsharp.wordpress.com&amp;blog=9982899&amp;post=79&amp;subd=codeincsharp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Variables provide a temporary storage location for data that will be needed during the lifespan of your C# application. Variables can contain different types of data, and the values assigned to these variables are instances of a specific type. For example, you may have one variable that holds numbers, and another that holds string. Both of these variables are defined by their type.</p>
<p>Here is the general syntax used when declaring a variable in C#:</p>
<p>[<em>Type Name</em>] [<em>Variable Name</em>] = [<em>Value</em>];</p>
<p>Let&#8217;s take a look at an example of creating a variable. First, we&#8217;ll delare a string variable called firstName, and assign a value:</p>
<pre class="brush: csharp;"> string firstName = &quot;Bob&quot;; </pre>
<p>You can declare variables without initialization, meaning that you can create them without initially assigning a value:</p>
<pre class="brush: csharp;"> string firstName; </pre>
<p>After the variable has been created, you can later assign a value, as needed:</p>
<pre class="brush: csharp;"> firstName = &quot;Bob&quot;; </pre>
<p>So far, all of these examples have shown creating variables of type string. There are many other built-in types that are commonly used, for example:</p>
<pre class="brush: csharp;">
string firstName = &quot;Joe&quot;;
string lastName = &quot;Shmoe&quot;;
char middleInitial = &quot;A&quot;;
int age = 42;
</pre>
<p>In the above example, we&#8217;ve created variables using built-in types. .NET Framework built-in types are the types you will generally use the most when declaring variables.</p>
<h3>Built-in Types</h3>
<p>In C#, built-in types are aliases for types defined in the .NET Framework System namespace. The table below shows the built-in types, along with their corresponding .NET Framework type:</p>
<table style="margin-bottom:20px;" border="0" width="100%">
<tbody>
<tr style="text-align:left;">
<th> C# Type</th>
<th> .NET Framework Type</th>
</tr>
<tr>
<td>bool</td>
<td>System.Boolean</td>
</tr>
<tr>
<td>byte</td>
<td>System.Byte</td>
</tr>
<tr>
<td>sbyte</td>
<td>System.SByte</td>
</tr>
<tr>
<td>char</td>
<td>System.Char</td>
</tr>
<tr>
<td>decimal</td>
<td>System.Decimal</td>
</tr>
<tr>
<td>double</td>
<td>System.Double</td>
</tr>
<tr>
<td>float</td>
<td>System.Single</td>
</tr>
<tr>
<td>int</td>
<td>System.Int32</td>
</tr>
<tr>
<td>uint</td>
<td>System.UInt32</td>
</tr>
<tr>
<td>long</td>
<td>System.Int64</td>
</tr>
<tr>
<td>ulong</td>
<td>System.UInt64</td>
</tr>
<tr>
<td>object</td>
<td>System.Object</td>
</tr>
<tr>
<td>short</td>
<td>System.Int16</td>
</tr>
<tr>
<td>ushort</td>
<td>System.UInt16</td>
</tr>
<tr>
<td>string</td>
<td>System.String</td>
</tr>
</tbody>
</table>
<p>The C# type keywords and aliases are interchangeable. Consider the following example:</p>
<pre class="brush: csharp;"> System.String lastName = &quot;Jones&quot;; string firstName = &quot;Bob&quot;; </pre>
<p>In the above example, the lastName and firstName variables are declared using the .NET Framework type System.String and it&#8217;s alias, string.</p>
<h3>Custom Types</h3>
<p>There may be times when you need to create your own type, based on a custom class. I&#8217;ll cover classes in detail in a future post, but for now let&#8217;s look at how you would create an instance of a custom type:</p>
<pre class="brush: csharp;"> Person myPerson = new Person(); </pre>
<p>In this example, we have declared an object of type Person. The New keyword is used to create a new instance of an object, based on the Person type.</p>
<p>That is all for now&#8230;In the next post, we&#8217;ll continue working through the basics of C#.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codeincsharp.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codeincsharp.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codeincsharp.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codeincsharp.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/codeincsharp.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/codeincsharp.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/codeincsharp.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/codeincsharp.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codeincsharp.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codeincsharp.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codeincsharp.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codeincsharp.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codeincsharp.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codeincsharp.wordpress.com/79/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codeincsharp.wordpress.com&amp;blog=9982899&amp;post=79&amp;subd=codeincsharp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://codeincsharp.wordpress.com/2009/10/20/using-variables-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/58522529f7e610e7c574d5b7803013b7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">codeincsharp</media:title>
		</media:content>
	</item>
		<item>
		<title>Working with the Console Class</title>
		<link>http://codeincsharp.wordpress.com/2009/10/18/working-with-the-console-class/</link>
		<comments>http://codeincsharp.wordpress.com/2009/10/18/working-with-the-console-class/#comments</comments>
		<pubDate>Sun, 18 Oct 2009 00:38:07 +0000</pubDate>
		<dc:creator>codeincsharp</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Console Application]]></category>

		<guid isPermaLink="false">http://codeincsharp.wordpress.com/?p=18</guid>
		<description><![CDATA[In my last post, I showed you how to create your first C# program using the Console class to read and write to the command prompt. This is a really common approach that you will see in pretty much every C# book or tutorial. In order to understand what is going on, I want to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codeincsharp.wordpress.com&amp;blog=9982899&amp;post=18&amp;subd=codeincsharp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In my last <a href="http://codeincsharp.wordpress.com/2009/10/17/writting-your-first-c-program/">post</a>, I showed you how to create your first C# program using the Console class to read and write to the command prompt. This is a really common approach that you will see in pretty much every C# book or tutorial. In order to understand what is going on, I want to explain a few things about the Console class, since you will be using it extensively.</p>
<p>The Console class is a static class, meaning that you do not need to declare an instance of the class in order to use it&#8217;s methods. Let&#8217;s take a look at the most common Console class methods that you&#8217;ll be using when learning C#:</p>
<ul>
<li>Console.Write</li>
<li>Console.WriteLine</li>
<li>Console.ReadLine</li>
</ul>
<h3>The Write and WriteLine Methods</h3>
<p>You&#8217;ll use the Write and WriteLine methods to display text in the command window. You&#8217;re probably wondering what the difference is between these two methods. Calling the WriteLine method prints the text on the screen, and then goes to a new line:</p>
<pre class="brush: csharp;">
Console.WriteLine(&quot;Hello&quot;)
Console.WriteLine(&quot;World&quot;)
</pre>
<p>Running the above code would give you the following output:</p>
<pre style="margin-bottom:10px;margin-left:15px;">
Hello
World
</pre>
<p>Calling the Write method prints the text, without returning a new line:</p>
<pre class="brush: csharp;">
Console.Write(&quot;Hello&quot;)
Console.Write(&quot;World&quot;)
</pre>
<p>Running the above code would give you the following output:</p>
<pre style="margin-bottom:10px;margin-left:15px;">
HelloWorld
</pre>
<h3>The ReadLine Method</h3>
<p>Calling the ReadLine method will pause the console, and wait for the user to provide input and the hit the enter key. You can use this method to request input from a user:</p>
<pre class="brush: csharp;">
Console.WriteLine(&quot;Please enter your first name&quot;);
string firstname = Console.ReadLine();
</pre>
<p>The above code will wait for the user to type their name into the command prompt. When they hit enter, the text will be stored in the firstname string.</p>
<h3>Formatting Strings</h3>
<p>Building on our previous example, we can write the users name back to the console when they enter it into the program:</p>
<pre class="brush: csharp;">
Console.WriteLine(&quot;Please enter your first name&quot;);
string firstname = Console.ReadLine();
Console.WriteLine(&quot;Hello, your name is {0}&quot;, firstname);
</pre>
<p>In our last call to WriteLine we are using what is called a formatted string. The {0} inside the double quotes is a place holder for our firstname variable. We could can do this for multiple strings, separated by a comma:</p>
<pre class="brush: csharp;">
string firstname = &quot;John&quot;;
string lastname = &quot;Doe&quot;;
Console.WriteLine(&quot;Hello, your first name is {0} and your last name is {1}&quot;, firstname, lastname);
</pre>
<p>You can see in the above example that the place holders are numbered, starting at zero, and are enclosed in curly braces. The two parameters are then inserted in to the string. The firstname variable is inserted into the {0} position and the lastname variable is inserted in to the {1} position in the string.</p>
<p>You&#8217;ll be working with the Console class quite a bit as you go through various tutorials and books on C#. Hopefully this will make things a little more clear going forward.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codeincsharp.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codeincsharp.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codeincsharp.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codeincsharp.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/codeincsharp.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/codeincsharp.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/codeincsharp.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/codeincsharp.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codeincsharp.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codeincsharp.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codeincsharp.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codeincsharp.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codeincsharp.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codeincsharp.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codeincsharp.wordpress.com&amp;blog=9982899&amp;post=18&amp;subd=codeincsharp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://codeincsharp.wordpress.com/2009/10/18/working-with-the-console-class/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/58522529f7e610e7c574d5b7803013b7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">codeincsharp</media:title>
		</media:content>
	</item>
		<item>
		<title>Writting Your First C# Program</title>
		<link>http://codeincsharp.wordpress.com/2009/10/17/writting-your-first-c-program/</link>
		<comments>http://codeincsharp.wordpress.com/2009/10/17/writting-your-first-c-program/#comments</comments>
		<pubDate>Sat, 17 Oct 2009 18:53:49 +0000</pubDate>
		<dc:creator>codeincsharp</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Console Application]]></category>

		<guid isPermaLink="false">http://codeincsharp.wordpress.com/?p=6</guid>
		<description><![CDATA[I am assuming you already have Visual Studio or Visual Studio Express installed and are ready to start programming with C#. If not, you can download and install Visual C# 2008 Express Edition here. Once you have Visual Studio installed, perform the following steps to create a new project: Start Visual Studio. Go to File [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codeincsharp.wordpress.com&amp;blog=9982899&amp;post=6&amp;subd=codeincsharp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I am assuming you already have Visual Studio or Visual Studio Express installed and are ready to start programming with C#. If not, you can download and install Visual C# 2008 Express Edition <a href="http://www.microsoft.com/express/vcsharp/" target="_blank">here</a>. Once you have Visual Studio installed, perform the following steps to create a new project:</p>
<ol>
<li>Start Visual Studio.</li>
<li>Go to File menu &gt; New, and then click Project.</li>
<li>In the new project screen, under Visual C#, select Windows.</li>
<li>In the Templates pane, select Console Application.</li>
<li>Type a name for your project. (I used &#8220;HelloWorld&#8221;)</li>
<li>Click OK.</li>
</ol>
<p>At this point, you should be looking at the program.cs source code, and it should look something like this:</p>
<pre class="brush: csharp;">
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace HelloWorld
{
    class Program
    {
        static void Main(string[] args)
        {
        }
    }
}
</pre>
<p>What we want to do is add code to the Main method, that writes a message to the console that says &#8220;Hello World&#8221;. Modify the main method so it looks like this:</p>
<pre class="brush: csharp;">
        static void Main(string[] args)
        {
            Console.WriteLine(&quot;Hello World&quot;);
            Console.ReadKey();
        }
</pre>
<p>Press F5 to run the project. You should get a black command prompt that displays the text &#8220;Hello World&#8221;.</p>
<p>Console.WriteLine is the method that writes the text to the console. We use the Console.ReadKey method to have our application pause, waiting for input. If we did not do this the console application would close immediately after running the project.</p>
<h3>Taking it a step further</h3>
<p>Now that we&#8217;ve got a working C# application, let&#8217;s make it a little more interactive. Modify your Main method to use the following code:</p>
<pre class="brush: csharp;">
        static void Main(string[] args)
        {
            string name;
            Console.WriteLine(&quot;Please enter your name:&quot;);
            name = Console.ReadLine();

            Console.WriteLine(&quot;Hello {0}, Welcome to C#!&quot;, name);
            Console.ReadKey();
        }
</pre>
<p>When you run the project, you&#8217;ll get prompted to enter your name. When you enter your name, a message will be displayed on the screen that says hello to you. For example, if I enter John Doe as my name, the application displays &#8220;Hello John Doe, Welcome to C#!&#8221;.</p>
<p>Let me explain what is going on in this example.</p>
<ul>
<li> First, we declare a string variable called &#8220;name&#8221; (I&#8217;ll cover variables further in a later post).</li>
<li> Next, we again use Console.WriteLine to display a message, asking the user for their name.</li>
<li> We then assign the Console.ReadLine method to the name variable. This allows us to prompt the user for their name, and store the string in the name variable.</li>
<li> Finally, we write a message to the console saying hello to the user name that was entered into our application. You may notice the syntax in this line is a little different. This is because we are using string formatting, I&#8217;ll cover strings in detail in a future post.</li>
</ul>
<p>Congratulations, you&#8217;ve just written your first working C# program. In the coming posts I&#8217;ll be covering all of the basics to get you up and running and programming in C#.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codeincsharp.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codeincsharp.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codeincsharp.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codeincsharp.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/codeincsharp.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/codeincsharp.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/codeincsharp.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/codeincsharp.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codeincsharp.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codeincsharp.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codeincsharp.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codeincsharp.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codeincsharp.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codeincsharp.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codeincsharp.wordpress.com&amp;blog=9982899&amp;post=6&amp;subd=codeincsharp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://codeincsharp.wordpress.com/2009/10/17/writting-your-first-c-program/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/58522529f7e610e7c574d5b7803013b7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">codeincsharp</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello World!</title>
		<link>http://codeincsharp.wordpress.com/2009/10/17/hello-world/</link>
		<comments>http://codeincsharp.wordpress.com/2009/10/17/hello-world/#comments</comments>
		<pubDate>Sat, 17 Oct 2009 17:42:42 +0000</pubDate>
		<dc:creator>codeincsharp</dc:creator>
				<category><![CDATA[C#]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Welcome to Code in C#! This is a blog that is intended to teach new programmers the C# language.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codeincsharp.wordpress.com&amp;blog=9982899&amp;post=1&amp;subd=codeincsharp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Welcome to Code in C#! This is a blog that is intended to teach new programmers the C# language. If you are just starting out and are interested in learning C#, then this blog will serve as another resource in addition to many helpful sites on the web. I intend to post tutorials on a regular basis, in the coming weeks and months I&#8217;ll be covering the following topics:</p>
<ul>
<li>Types &amp; Variables</li>
<li>Arrays</li>
<li>Strings and Characters</li>
<li>Expressions and Operators</li>
<li>Statements</li>
<li>Namespaces</li>
<li>Classes and Structs</li>
<li>Inheritance</li>
<li>Properties</li>
<li>Indexers</li>
<li>Delegates</li>
<li>Events</li>
<li>Generics</li>
<li>LINQ</li>
<li>Lambda Expressions</li>
<li>Enumeration and Iterators</li>
<li>Nullable Types</li>
<li>Extention Methods</li>
</ul>
<p>&#8230;and much more!</p>
<p>I hope, over time, you find this blog as a valuable resource in learning C#!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/codeincsharp.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/codeincsharp.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/codeincsharp.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/codeincsharp.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/codeincsharp.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/codeincsharp.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/codeincsharp.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/codeincsharp.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/codeincsharp.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/codeincsharp.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/codeincsharp.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/codeincsharp.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/codeincsharp.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/codeincsharp.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=codeincsharp.wordpress.com&amp;blog=9982899&amp;post=1&amp;subd=codeincsharp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://codeincsharp.wordpress.com/2009/10/17/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/58522529f7e610e7c574d5b7803013b7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">codeincsharp</media:title>
		</media:content>
	</item>
	</channel>
</rss>
