<?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/"
	>

<channel>
	<title>Splitzer &#187; C Sharp</title>
	<atom:link href="http://www.splitzer.net/blog/index.php/category/c-sharp/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.splitzer.net/blog</link>
	<description>Development Blog</description>
	<lastBuildDate>Sat, 17 Jul 2010 20:36:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>10 skills developers will need in the next five years</title>
		<link>http://www.splitzer.net/blog/index.php/2009/04/19/10-skills-developers-will-need-in-the-next-five-years/</link>
		<comments>http://www.splitzer.net/blog/index.php/2009/04/19/10-skills-developers-will-need-in-the-next-five-years/#comments</comments>
		<pubDate>Sun, 19 Apr 2009 20:52:04 +0000</pubDate>
		<dc:creator>syed</dc:creator>
				<category><![CDATA[C Sharp]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[developer tool]]></category>

		<guid isPermaLink="false">http://www.splitzer.net/blog/?p=56</guid>
		<description><![CDATA[I was reading an article published by TechRepublic for developers. Most of the stuff that was on the article such as Agile and Web Services, and RIA didn&#8217;t surprise me. In this tough economic times, i think it will be interesting to see where the demand shifts. However, i think the good stuff mentioned will surely be [...]]]></description>
		<wfw:commentRss>http://www.splitzer.net/blog/index.php/2009/04/19/10-skills-developers-will-need-in-the-next-five-years/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C#: Interacting with command-line</title>
		<link>http://www.splitzer.net/blog/index.php/2007/10/24/c-interacting-with-command-line/</link>
		<comments>http://www.splitzer.net/blog/index.php/2007/10/24/c-interacting-with-command-line/#comments</comments>
		<pubDate>Wed, 24 Oct 2007 22:27:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C Sharp]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[command-line]]></category>

		<guid isPermaLink="false">http://www.splitzer.net/blog/index.php/2007/10/24/c-interacting-with-command-line/</guid>
		<description><![CDATA[The command-line interaction is a basic element of c#, it allows a program to accept input from a user. Typically, it works like this: prompt user for input, they enter information, and program takes action. // Declare Namespace using System;// Start "Program" Class class InteractiveWelcome { // begins program execution. public static void Main() { [...]]]></description>
		<wfw:commentRss>http://www.splitzer.net/blog/index.php/2007/10/24/c-interacting-with-command-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visual Studio.Net: Delete Recent Project List</title>
		<link>http://www.splitzer.net/blog/index.php/2007/07/17/visual-studionet-delete-recent-project-list/</link>
		<comments>http://www.splitzer.net/blog/index.php/2007/07/17/visual-studionet-delete-recent-project-list/#comments</comments>
		<pubDate>Tue, 17 Jul 2007 16:55:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C Sharp]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://www.splitzer.net/blog/index.php/2007/07/17/visual-studionet-delete-recent-project-list/</guid>
		<description><![CDATA[Start\Run menu then go to: -Run regedit.exe Then go to: HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\8.0\ProjectMRUList  key, delete the values.]]></description>
		<wfw:commentRss>http://www.splitzer.net/blog/index.php/2007/07/17/visual-studionet-delete-recent-project-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C# Basic Console Application using Variables</title>
		<link>http://www.splitzer.net/blog/index.php/2007/06/21/c-basic-console-application-using-variables/</link>
		<comments>http://www.splitzer.net/blog/index.php/2007/06/21/c-basic-console-application-using-variables/#comments</comments>
		<pubDate>Thu, 21 Jun 2007 05:34:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C Sharp]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[console application]]></category>

		<guid isPermaLink="false">http://www.splitzer.net/blog/index.php/2007/06/21/c-basic-console-application-using-variables/</guid>
		<description><![CDATA[C Sharp provides neat functionality to build a console application. The following example is a really simple one using variables with classes defined.   using System; using System.Collections.Generic; using System.Text; namespace ConsoleApplication4 {     class Program     {         static void Main(string[] args)         {             string firstName;             string lastName;             Variables(out firstName, out [...]]]></description>
		<wfw:commentRss>http://www.splitzer.net/blog/index.php/2007/06/21/c-basic-console-application-using-variables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WinForm Programming: A Basic WinForm Application</title>
		<link>http://www.splitzer.net/blog/index.php/2007/06/18/winform-programming-a-basic-winform-application/</link>
		<comments>http://www.splitzer.net/blog/index.php/2007/06/18/winform-programming-a-basic-winform-application/#comments</comments>
		<pubDate>Tue, 19 Jun 2007 01:54:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C Sharp]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[windows application]]></category>

		<guid isPermaLink="false">http://www.splitzer.net/blog/index.php/2007/06/18/winform-programming-a-basic-winform-application/</guid>
		<description><![CDATA[Let me get this week started with a basic example of WinForm application. I know, i should&#8217;ve done a smoother transition from coldfusion to c#, but it has been a tough week understanding with so much less community work in coldfusion communities. Here is our C# application code: using System; using System.Windows.Forms; public class WinApp [...]]]></description>
		<wfw:commentRss>http://www.splitzer.net/blog/index.php/2007/06/18/winform-programming-a-basic-winform-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visual Studio Express Downloads</title>
		<link>http://www.splitzer.net/blog/index.php/2007/06/17/visual-studio-express-downloads/</link>
		<comments>http://www.splitzer.net/blog/index.php/2007/06/17/visual-studio-express-downloads/#comments</comments>
		<pubDate>Mon, 18 Jun 2007 02:02:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C Sharp]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://www.splitzer.net/blog/index.php/2007/06/18/visual-studio-express-downloads/</guid>
		<description><![CDATA[I will start posting some post related to C Sharp and visual studio in upcoming weeks, i would highly recommand grabbing this free developer stuff if you dont already have: http://msdn.microsoft.com/vstudio/express/downloads/]]></description>
		<wfw:commentRss>http://www.splitzer.net/blog/index.php/2007/06/17/visual-studio-express-downloads/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
