<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.9" -->
<rss version="0.92">
<channel>
	<title>The .NET blog</title>
	<link>http://blog.net-tutorials.com</link>
	<description>On everything .NET</description>
	<lastBuildDate>Wed, 10 Jun 2009 09:33:40 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>The Process class: Is my application already running?</title>
		<description><![CDATA[In the last blog post, we used the Process class from the System.Diagnostics namespace to start applications and URL&#8217;s. However, you can do other things with this class as well &#8211; for instance, you can see which processes are running on the system:
Process[] runningProcesses = Process.GetProcesses();
foreach(Process p in runningProcesses)
	Console.WriteLine(p.ProcessName);
This piece of code will simply obtain [...]]]></description>
		<link>http://blog.net-tutorials.com/2009/06/10/the-process-class-is-my-application-already-running/</link>
			</item>
	<item>
		<title>The Process class: Starting an application or URL</title>
		<description><![CDATA[The Process class from the System.Diagnostics namespace can be quite useful, especially for launching other applications or even URL&#8217;s. An application can be started with a single line of code:
Process.Start(@&#34;C:\Windows\System32\calc.exe&#34;);
It doesn&#8217;t get simpler than that, in a perfect world. But as we all know, the world is not perfect, and that line could go wrong [...]]]></description>
		<link>http://blog.net-tutorials.com/2009/05/21/the-process-class-starting-an-application-or-url/</link>
			</item>
	<item>
		<title>New articles on localization</title>
		<description><![CDATA[I just added a bunch of new articles on localizing your ASP.NET website. You should go have a look right now, if you&#8217;re in the process of, or at least considering, localizing your website:

Introduction
Hello, localized world!
The CultureInfo class
Local &#38; Global resources
Implicit &#38; Explicit localization
Localizing the CodeBehind
Changing the active culture

Enjoy  
]]></description>
		<link>http://blog.net-tutorials.com/2009/04/08/new-articles-on-localization/</link>
			</item>
	<item>
		<title>How to: Alternate row color with the ASP.NET Repeater control</title>
		<description><![CDATA[The ASP.NET Repeater control is great in a whole range of scenarios. I use it all the time my self because it&#8217;s flexible and simple to use. Often, it&#8217;s for outputting rows of data, where I want to avoid using the GridView control, or simply because I don&#8217;t want it to be built as a [...]]]></description>
		<link>http://blog.net-tutorials.com/2009/04/02/how-to-alternate-row-color-with-the-aspnet-repeater-control/</link>
			</item>
	<item>
		<title>How to: Download a file from the Internet with C#</title>
		<description><![CDATA[With .NET, working with remote files are very easy. From the System.Net namespace, we get several classes which comes in handy for doing just that. For instance, downloading a file to your computer can be accomplished with a few lines of code, using the WebClient class:
try
{
	WebClient webClient = new WebClient();
	webClient.DownloadFile(&#34;http://www.google.com/intl/en_ALL/images/logo.gif&#34;, @&#34;c:\google_logo.gif&#34;);
}
catch(Exception ex)
{
	Console.WriteLine(&#34;Could not download file: [...]]]></description>
		<link>http://blog.net-tutorials.com/2009/03/16/how-to-download-a-file-from-the-internet-with-c/</link>
			</item>
	<item>
		<title>Microsoft releases free chart controls</title>
		<description><![CDATA[In case you haven&#8217;t noticed it yet, Microsoft has just released a set of Chart controls to be used with both ASP.NET and WinForms applications. They support both 2D and 3D charts, and has a bunch of cool features, which should cover most of your charting needs  . They can be downloaded from this [...]]]></description>
		<link>http://blog.net-tutorials.com/2008/12/01/microsoft-releases-free-chart-controls/</link>
			</item>
	<item>
		<title>New articles on Reflection</title>
		<description><![CDATA[Just a small note to let you know that a set of chapters about Reflection has been added to the C# tutorial. You can find the introduction right here. I simply love using Reflection, so I&#8217;m probably going to write some more on it in the near future &#8211; anything specific you would like me [...]]]></description>
		<link>http://blog.net-tutorials.com/2008/11/13/new-articles-on-reflection/</link>
			</item>
	<item>
		<title>Sorting items in a generic List&lt;T&gt;</title>
		<description><![CDATA[Generic lists were introduced in .NET 2.0, and I have been a big fan of them ever since. I used to use the ArrayList class, before .NET 2.0, but the List&#60;T&#62; has the major advantage of being strongly typed, which is cool because the compiler will let me know if I&#8217;m trying to add another [...]]]></description>
		<link>http://blog.net-tutorials.com/2008/10/27/sorting-items-in-a-generic-listt/</link>
			</item>
	<item>
		<title>Using the using statement</title>
		<description><![CDATA[With .NET we have the garbage collector to clean up all the mess we make through the lifecycle of an application. But does that mean that we will never have to clean up anything our self? Not really. As a general rule, classes which implements the IDisposable interface should be manually disposed, usually by calling [...]]]></description>
		<link>http://blog.net-tutorials.com/2008/09/19/using-the-using-statement/</link>
			</item>
	<item>
		<title>Testing on different machines</title>
		<description><![CDATA[In case you haven&#8217;t noticed, testing your applications on several machines is a very good idea, especially in that pre-beta phase, where you want to get rid of the most obvious bugs before showing your work for the first time. Especially with the .NET framework, testing your work on other machines than the one it&#8217;s [...]]]></description>
		<link>http://blog.net-tutorials.com/2008/09/14/testing-on-different-machines/</link>
			</item>
</channel>
</rss>
