<?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>The Way Of Coding &#187; c#</title>
	<atom:link href="http://thewayofcoding.com/tag/c/feed/" rel="self" type="application/rss+xml" />
	<link>http://thewayofcoding.com</link>
	<description></description>
	<lastBuildDate>Mon, 28 Jun 2010 06:17:17 +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>Working with Regular Expressions in C#</title>
		<link>http://thewayofcoding.com/2008/08/working-with-regular-expressions-in-c/</link>
		<comments>http://thewayofcoding.com/2008/08/working-with-regular-expressions-in-c/#comments</comments>
		<pubDate>Sun, 24 Aug 2008 05:45:53 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[1]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[extract]]></category>
		<category><![CDATA[form]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[matching]]></category>
		<category><![CDATA[process]]></category>
		<category><![CDATA[regex]]></category>
		<category><![CDATA[regular expressions]]></category>

		<guid isPermaLink="false">http://www.thewayofcoding.com/?p=99</guid>
		<description><![CDATA[I&#8217;ve been working on a program that needs to parse a html file for form data.  So when I was deciding what method to use, a few popped right into my mind. The first being a character by character search through the string.  Parsing through the data and flagging sections that fit the signature of [...]]]></description>
		<wfw:commentRss>http://thewayofcoding.com/2008/08/working-with-regular-expressions-in-c/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Learning About .NET Web Access Classes</title>
		<link>http://thewayofcoding.com/2008/05/learning-about-net-web-access-classes/</link>
		<comments>http://thewayofcoding.com/2008/05/learning-about-net-web-access-classes/#comments</comments>
		<pubDate>Fri, 16 May 2008 02:17:00 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[1]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[learning]]></category>
		<category><![CDATA[testing]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[WebBrowser Control]]></category>
		<category><![CDATA[webrequest]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://localhost/?p=33</guid>
		<description><![CDATA[I mentioned about wanting to start a business in my previous post. Well it looks like I might have my chance. While it isn&#8217;t exactly what I was thinking of in my previous post, I foresee many opportunities to flex my programming muscle in this endeavor. Plus, I will be starting up with a good [...]]]></description>
		<wfw:commentRss>http://thewayofcoding.com/2008/05/learning-about-net-web-access-classes/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>C# .NET Programming Tip: Oracle Connection Revised</title>
		<link>http://thewayofcoding.com/2008/03/c-net-programming-tip-oracle-connection-revised/</link>
		<comments>http://thewayofcoding.com/2008/03/c-net-programming-tip-oracle-connection-revised/#comments</comments>
		<pubDate>Sat, 01 Mar 2008 14:37:00 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[1]]></category>
		<category><![CDATA["no tnsnames"]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[connection]]></category>
		<category><![CDATA[easier]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[tip]]></category>

		<guid isPermaLink="false">http://localhost/?p=26</guid>
		<description><![CDATA[Take not that Microsoft will discontinue support for System.Data.OracleClient in .NET 4.0. This method should still work, but it will be depreciated&#8230; Now that I have had more time to work with Oracle, I found a better way to connect then described in my previous post. With this new method you can connect to multiple [...]]]></description>
		<wfw:commentRss>http://thewayofcoding.com/2008/03/c-net-programming-tip-oracle-connection-revised/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>C# .NET Programming Tip: Types</title>
		<link>http://thewayofcoding.com/2008/02/c-net-programming-tip-types/</link>
		<comments>http://thewayofcoding.com/2008/02/c-net-programming-tip-types/#comments</comments>
		<pubDate>Thu, 21 Feb 2008 12:47:00 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[1]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[GetType]]></category>
		<category><![CDATA[object]]></category>
		<category><![CDATA[tip]]></category>

		<guid isPermaLink="false">http://localhost/?p=25</guid>
		<description><![CDATA[Figuring out a variable&#8217;s type has become more important since now variables can be boxed by their parent class(s) (Where all can be &#8220;Object&#8221;). It&#8217;s nice because it allows for one generalized function to work with many types that perform an action on a common attribute, or first figure out what the object is and [...]]]></description>
		<wfw:commentRss>http://thewayofcoding.com/2008/02/c-net-programming-tip-types/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
