

<?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>Jimmy Burnett &#187; C#</title>
	<atom:link href="http://www.jimmyburnett.com/tag/c/feed" rel="self" type="application/rss+xml" />
	<link>http://www.jimmyburnett.com</link>
	<description>My person tech blog.</description>
	<lastBuildDate>Wed, 09 Jun 2010 12:37:20 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Making a simple ListBox with GTK and Glade3.</title>
		<link>http://www.jimmyburnett.com/2010/03/making-a-simple-listbox-with-gtk-and-glade3.html</link>
		<comments>http://www.jimmyburnett.com/2010/03/making-a-simple-listbox-with-gtk-and-glade3.html#comments</comments>
		<pubDate>Tue, 02 Mar 2010 20:58:07 +0000</pubDate>
		<dc:creator>Jimmy</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Glade3]]></category>
		<category><![CDATA[GTK#]]></category>

		<guid isPermaLink="false">http://www.jimmyburnett.com/?p=1166</guid>
		<description><![CDATA[Adding a simple ListBox widget in your GTK application is easier than you think. This tutorial will show you how to create ListBox-like functionality in GTK using Glade3. GTK uses the TreeView control as their do-all list control. You can create simple lists, tree-like lists and all sorts of various list views. What is really [...]]]></description>
		<wfw:commentRss>http://www.jimmyburnett.com/2010/03/making-a-simple-listbox-with-gtk-and-glade3.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add background color to PNG files in C#.</title>
		<link>http://www.jimmyburnett.com/2010/01/add-background-color-to-png-file-in-c.html</link>
		<comments>http://www.jimmyburnett.com/2010/01/add-background-color-to-png-file-in-c.html#comments</comments>
		<pubDate>Fri, 15 Jan 2010 10:27:47 +0000</pubDate>
		<dc:creator>Jimmy</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Application Development]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[c-sharp]]></category>

		<guid isPermaLink="false">http://www.jimmyburnett.com/?p=876</guid>
		<description><![CDATA[This code snippet will let you force a background color into a PNG file with C#.  When working with PNG files in Visual Studio sometimes you&#8217;ll run into situations where the background of a PNG shows up as grey or even blue. This is because of the PNG files transparency and Windows can sometimes [...]]]></description>
		<wfw:commentRss>http://www.jimmyburnett.com/2010/01/add-background-color-to-png-file-in-c.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C#: A multi-threaded UDP server with BackgroundWorker.</title>
		<link>http://www.jimmyburnett.com/2010/01/c-a-multi-threaded-udp-server-with-backgroundworker.html</link>
		<comments>http://www.jimmyburnett.com/2010/01/c-a-multi-threaded-udp-server-with-backgroundworker.html#comments</comments>
		<pubDate>Tue, 12 Jan 2010 10:53:32 +0000</pubDate>
		<dc:creator>Jimmy</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[c-sharp]]></category>
		<category><![CDATA[Network Programming]]></category>

		<guid isPermaLink="false">http://www.jimmyburnett.com/?p=884</guid>
		<description><![CDATA[The following code shows you how to build a UDP server in C# using the UUdpClient class for the networking and BackgroundWorker class for reporting data back to the application. This particular UDP server class is designed to be used with a Windows Forms or GUI. When using the UDP server you pass a BackgroundWorker [...]]]></description>
		<wfw:commentRss>http://www.jimmyburnett.com/2010/01/c-a-multi-threaded-udp-server-with-backgroundworker.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Check for a Windows service in C#.</title>
		<link>http://www.jimmyburnett.com/2010/01/check-for-a-windows-service-in-c.html</link>
		<comments>http://www.jimmyburnett.com/2010/01/check-for-a-windows-service-in-c.html#comments</comments>
		<pubDate>Mon, 11 Jan 2010 01:18:37 +0000</pubDate>
		<dc:creator>Jimmy</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Application Development]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[c-sharp]]></category>

		<guid isPermaLink="false">http://www.jimmyburnett.com/?p=881</guid>
		<description><![CDATA[
This code will check through a list of installed Windows Services for a specific service name in C# (returns boolean). The function allows you to pass a service name as a string and the function will check the Windows Service list for that name. It will also look for partial service names in case you [...]]]></description>
		<wfw:commentRss>http://www.jimmyburnett.com/2010/01/check-for-a-windows-service-in-c.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Convert C# code to Visual Basic,Python and Back.</title>
		<link>http://www.jimmyburnett.com/2009/12/convert-c-code-to-visual-basicpython-and-back.html</link>
		<comments>http://www.jimmyburnett.com/2009/12/convert-c-code-to-visual-basicpython-and-back.html#comments</comments>
		<pubDate>Fri, 11 Dec 2009 23:02:02 +0000</pubDate>
		<dc:creator>Jimmy</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[c-sharp]]></category>
		<category><![CDATA[Code Conversion]]></category>
		<category><![CDATA[visual studio]]></category>

		<guid isPermaLink="false">http://www.uniprogrammer.com/2009/12/convert-c-code-to-visual-basicpython-and-back.html</guid>
		<description><![CDATA[Some of you .NET programmers may some day find some sample code written in Visual Basic, or C#, but need it in another .NET language. SharpDevelop, a free .NET IDE, has a tool built in that will convert C# into Visual Basic and Python, or Visual Basic into C#, Python and any variation. This video [...]]]></description>
		<wfw:commentRss>http://www.jimmyburnett.com/2009/12/convert-c-code-to-visual-basicpython-and-back.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RSS.NET &#8211; Read RSS feeds in .NET.</title>
		<link>http://www.jimmyburnett.com/2009/12/rss-net-read-rss-feeds-in-net.html</link>
		<comments>http://www.jimmyburnett.com/2009/12/rss-net-read-rss-feeds-in-net.html#comments</comments>
		<pubDate>Fri, 11 Dec 2009 15:13:32 +0000</pubDate>
		<dc:creator>Jimmy</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[RSS]]></category>

		<guid isPermaLink="false">http://www.uniprogrammer.com/?p=64</guid>
		<description><![CDATA[“RSS is a format for syndicating news and the content of news-like sites, including major news sites like Wired, news-oriented community sites like Slashdot, and personal weblogs. But it&#8217;s not just for news. Pretty much anything that can be broken down into discrete items can be syndicated via RSS: the &#8220;recent changes&#8221; page of a [...]]]></description>
		<wfw:commentRss>http://www.jimmyburnett.com/2009/12/rss-net-read-rss-feeds-in-net.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rapid Application Development Library 2.9.0</title>
		<link>http://www.jimmyburnett.com/2009/12/rapid-application-development-library-2-9-0.html</link>
		<comments>http://www.jimmyburnett.com/2009/12/rapid-application-development-library-2-9-0.html#comments</comments>
		<pubDate>Thu, 10 Dec 2009 19:43:48 +0000</pubDate>
		<dc:creator>Jimmy</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Programming Library]]></category>

		<guid isPermaLink="false">http://www.uniprogrammer.com/2009/12/rapid-application-development-library-2-9-0.html</guid>
		<description><![CDATA[Radlib is a C language library developed to abstract details of interprocess communications and common Linux/Unix system facilities so that application developers can concentrate on application solutions. It encourages developers to use a proven paradigm of event-driven, asynchronous design.]]></description>
		<wfw:commentRss>http://www.jimmyburnett.com/2009/12/rapid-application-development-library-2-9-0.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple Sockets</title>
		<link>http://www.jimmyburnett.com/2009/12/simple-sockets.html</link>
		<comments>http://www.jimmyburnett.com/2009/12/simple-sockets.html#comments</comments>
		<pubDate>Thu, 10 Dec 2009 19:08:22 +0000</pubDate>
		<dc:creator>Jimmy</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[CPP]]></category>
		<category><![CDATA[Network Programming]]></category>
		<category><![CDATA[Socket Programming]]></category>

		<guid isPermaLink="false">http://www.uniprogrammer.com/2009/12/simple-sockets.html</guid>
		<description><![CDATA[


Simple Sockets is a cross platform socket library. It is different from other socket libraries which mix the application protocol and transport protocol layer (i.e. TCP sockets, UDP sockets, HTTP sockets, etc). This library focuses specifically on the transport protocols. Its features include blocking/non-blocking sockets, polling, thread safety, and signal safety.
This example creates a socket [...]]]></description>
		<wfw:commentRss>http://www.jimmyburnett.com/2009/12/simple-sockets.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remember the endians!</title>
		<link>http://www.jimmyburnett.com/2009/12/remember-the-endians.html</link>
		<comments>http://www.jimmyburnett.com/2009/12/remember-the-endians.html#comments</comments>
		<pubDate>Mon, 07 Dec 2009 18:48:37 +0000</pubDate>
		<dc:creator>Jimmy</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[BigEndian]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Little Endian]]></category>

		<guid isPermaLink="false">http://www.uniprogrammer.com/2009/12/remember-the-endians.html</guid>
		<description><![CDATA[For those of you that deal with bytes on a protocol level, I’ve discovered an easy solution for dealing with those endian issues. Some of you may know that when dumping data directly from memory as byte[] arrays will give you different results depending on the source’s computer architecture. As an example, a Motorola ColdFire [...]]]></description>
		<wfw:commentRss>http://www.jimmyburnett.com/2009/12/remember-the-endians.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Implement an RSS reader into your .NET program.</title>
		<link>http://www.jimmyburnett.com/2009/12/implement-an-rss-reader-into-your-net-program.html</link>
		<comments>http://www.jimmyburnett.com/2009/12/implement-an-rss-reader-into-your-net-program.html#comments</comments>
		<pubDate>Sun, 06 Dec 2009 18:42:10 +0000</pubDate>
		<dc:creator>Jimmy</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[c-sharp]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[visual studio]]></category>

		<guid isPermaLink="false">http://www.uniprogrammer.com/2009/12/implement-an-rss-reader-into-your-net-program.html</guid>
		<description><![CDATA[If you’re looking for RSS support in your .NET application head over to RSSdotnet.com and download the latest RSS.NET library. They provide all the source code and API documents you need to add RSS into your program. I haven’t thoroughly reviewed the code but it does work pretty code and seems stable. I’m currently using [...]]]></description>
		<wfw:commentRss>http://www.jimmyburnett.com/2009/12/implement-an-rss-reader-into-your-net-program.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
