

<?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; .NET</title>
	<atom:link href="http://www.jimmyburnett.com/tag/net/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>Mono, .NET for Linux,</title>
		<link>http://www.jimmyburnett.com/2009/12/mono-net-for-linux.html</link>
		<comments>http://www.jimmyburnett.com/2009/12/mono-net-for-linux.html#comments</comments>
		<pubDate>Mon, 14 Dec 2009 22:12:02 +0000</pubDate>
		<dc:creator>Jimmy</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[Linux Programming]]></category>
		<category><![CDATA[Mono]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[WPF]]></category>

		<guid isPermaLink="false">http://www.uniprogrammer.com/?p=109</guid>
		<description><![CDATA[
Mono is a Novell and Microsoft sponsored effort to bring the .NET framework to Linux. Microsoft has partnered with Novell to provide the tools and libraries necessary for .NET development on the Linux platform. Currently the Mono project supports the .NET framework 3.5 to include WinForms 2.0. Some of the new technologies such as Silverlight [...]]]></description>
		<wfw:commentRss>http://www.jimmyburnett.com/2009/12/mono-net-for-linux.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Write .NET programs for Linux with MonoDevelop.</title>
		<link>http://www.jimmyburnett.com/2009/12/write-net-programs-for-linux-with-monodevelop.html</link>
		<comments>http://www.jimmyburnett.com/2009/12/write-net-programs-for-linux-with-monodevelop.html#comments</comments>
		<pubDate>Mon, 14 Dec 2009 20:55:12 +0000</pubDate>
		<dc:creator>Jimmy</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[Linux IDE]]></category>
		<category><![CDATA[Linux Programming]]></category>
		<category><![CDATA[Mono]]></category>

		<guid isPermaLink="false">http://www.uniprogrammer.com/?p=103</guid>
		<description><![CDATA[MonoDevelop is an IDE primarily designed for C# and other .NET languages. MonoDevelop enables developers to quickly write desktop and ASP.NET Web applications on Linux. MonoDevelop makes it easy for developers to port .NET applications created with Visual Studio to Linux and to maintain a single code base for all platforms.


I have personally used MonoDevelop [...]]]></description>
		<wfw:commentRss>http://www.jimmyburnett.com/2009/12/write-net-programs-for-linux-with-monodevelop.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SharpDevelop, a free .NET development environment.</title>
		<link>http://www.jimmyburnett.com/2009/12/sharpdevelop-a-free-net-development-environment.html</link>
		<comments>http://www.jimmyburnett.com/2009/12/sharpdevelop-a-free-net-development-environment.html#comments</comments>
		<pubDate>Fri, 11 Dec 2009 21:38:37 +0000</pubDate>
		<dc:creator>Jimmy</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[IDE]]></category>
		<category><![CDATA[SharpDevelop]]></category>

		<guid isPermaLink="false">http://www.uniprogrammer.com/?p=85</guid>
		<description><![CDATA[#develop (short for SharpDevelop) is a free IDE for C#, VB.NET and Boo projects on Microsoft&#8217;s .NET platform. It is open-source, and you can download both sourcecode and executables from this site. I have personally used SharpDevelop in many free and commercial products I have developed. SharpDevelop provides many features that the Visual Studio Pro [...]]]></description>
		<wfw:commentRss>http://www.jimmyburnett.com/2009/12/sharpdevelop-a-free-net-development-environment.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to download web content with .NET.</title>
		<link>http://www.jimmyburnett.com/2009/12/how-to-download-web-content-with-net.html</link>
		<comments>http://www.jimmyburnett.com/2009/12/how-to-download-web-content-with-net.html#comments</comments>
		<pubDate>Thu, 10 Dec 2009 12:03:17 +0000</pubDate>
		<dc:creator>Jimmy</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[BackGroundWorker]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[WebClient]]></category>

		<guid isPermaLink="false">http://www.uniprogrammer.com/2009/12/how-to-download-web-content-with-net.html</guid>
		<description><![CDATA[This morning I created another video tutorial, this one on downloading web content to use inside your .NET application. The tutorial goes over downloading content with the WebClient class as well as a brief intro to multithreading with the BackGroundWorker class. 






&#160;
 
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Net;

namespace WebClientDemo1
{
   [...]]]></description>
		<wfw:commentRss>http://www.jimmyburnett.com/2009/12/how-to-download-web-content-with-net.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Uploading files to a web server using Visual Basic.</title>
		<link>http://www.jimmyburnett.com/2009/12/uploading-files-to-a-web-server-using-visual-basic.html</link>
		<comments>http://www.jimmyburnett.com/2009/12/uploading-files-to-a-web-server-using-visual-basic.html#comments</comments>
		<pubDate>Thu, 10 Dec 2009 11:58:26 +0000</pubDate>
		<dc:creator>Jimmy</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Visual Basic]]></category>

		<guid isPermaLink="false">http://www.uniprogrammer.com/2009/12/uploading-files-to-a-web-server-using-visual-basic.html</guid>
		<description><![CDATA[Do you need to upload a file to your php web server from a .NET application? I did, and I found that it was actually pretty easy. Basically the upload.php file works the same way as a basic HTML website form. You simply do an HTML form post from within your .NET application. 


The source [...]]]></description>
		<wfw:commentRss>http://www.jimmyburnett.com/2009/12/uploading-files-to-a-web-server-using-visual-basic.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BackgroundWorker Class Howto.</title>
		<link>http://www.jimmyburnett.com/2009/08/backgroundworker-class-howto.html</link>
		<comments>http://www.jimmyburnett.com/2009/08/backgroundworker-class-howto.html#comments</comments>
		<pubDate>Sat, 22 Aug 2009 15:50:47 +0000</pubDate>
		<dc:creator>Jimmy</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[.NET]]></category>

		<guid isPermaLink="false">http://www.geekmoz.com/?p=235</guid>
		<description><![CDATA[Well I wanted to go multithread in my .NET applications and my friend Joel gave me a mini class that could give anyone a head ache. What he taught me worked, and was the thing to do in the days of Visual Studio 2003, but I explored the new Background worker class, new to Visual [...]]]></description>
		<wfw:commentRss>http://www.jimmyburnett.com/2009/08/backgroundworker-class-howto.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to post html form data with C# .NET.</title>
		<link>http://www.jimmyburnett.com/2009/06/how-to-post-html-form-data-with-c-net.html</link>
		<comments>http://www.jimmyburnett.com/2009/06/how-to-post-html-form-data-with-c-net.html#comments</comments>
		<pubDate>Sat, 13 Jun 2009 17:52:15 +0000</pubDate>
		<dc:creator>Jimmy</dc:creator>
				<category><![CDATA[Linux Howtos]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[c-sharp]]></category>
		<category><![CDATA[Mono]]></category>

		<guid isPermaLink="false">http://www.prohowto.net/?p=84</guid>
		<description><![CDATA[In a program I made in C# .NET I needed the ability to post data to a PHP script. I wanted the data to be posted as if I was filling out the form on a web page. After trying a few different methods of doing this, mostly just putting the data in a query [...]]]></description>
		<wfw:commentRss>http://www.jimmyburnett.com/2009/06/how-to-post-html-form-data-with-c-net.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to run .NET programs in Linux.</title>
		<link>http://www.jimmyburnett.com/2009/06/how-to-run-net-programs-in-linux.html</link>
		<comments>http://www.jimmyburnett.com/2009/06/how-to-run-net-programs-in-linux.html#comments</comments>
		<pubDate>Wed, 10 Jun 2009 08:50:22 +0000</pubDate>
		<dc:creator>Jimmy</dc:creator>
				<category><![CDATA[Linux Howtos]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[Mono]]></category>

		<guid isPermaLink="false">http://www.jrbtech.com/?p=29</guid>
		<description><![CDATA[If you are a software developer you may or may not know that you can run your .NET 1.0 and .NET 2.0 applications natively in Linux. Even Windows.Forms (GUI Programs) programs can be run natively, making .NET a great and easy tool for cross platform development. 


The software that makes this happen is Mono. Mono [...]]]></description>
		<wfw:commentRss>http://www.jimmyburnett.com/2009/06/how-to-run-net-programs-in-linux.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
