<?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>C# kódok &#187; k t</title>
	<atom:link href="http://users.atw.hu/csharpkodok/" rel="self" type="application/rss+xml" />
	<link>http://users.atw.hu/csharpkodok</link>
	<description>Csharp kódok gyüjteménye</description>
	<lastBuildDate>Fri, 07 Aug 2009 11:44:01 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Kivétel továbbdobása:</title>
		<link>http://users.atw.hu/csharpkodok/?p=108</link>
		<comments>http://users.atw.hu/csharpkodok/?p=108#comments</comments>
		<pubDate>Sun, 02 Aug 2009 18:11:47 +0000</pubDate>
		<dc:creator>nameless</dc:creator>
				<category><![CDATA[kód]]></category>
		<category><![CDATA[k t]]></category>

		<guid isPermaLink="false">http://users.atw.hu/csharpkodok/?p=108</guid>
		<description><![CDATA[

// Írta CS.K.
using System;
&#160;
namespace Program
{
    static class MainClass
    {
        static void Calc()
        {
            var array = new int[10];
&#160;
       [...]]]></description>
			<content:encoded><![CDATA[<p><span id="more-108"></span></p>

<div class="wp_syntax"><div class="code"><pre class="language" style="font-family:monospace;">// Írta CS.K.
using System;
&nbsp;
namespace Program
{
    static class MainClass
    {
        static void Calc()
        {
            var array = new int[10];
&nbsp;
            try
            {
                for (var i = 0; i &lt; 11; ++i)
                    array[i] = 11;
            }
            catch (IndexOutOfRangeException)
            {
                throw; //itt továbdobja a következő kivétel odóhoz.
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.Message);
            }
        }
        static void Main()
        {
            try
            {
                Calc();
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.Message);
            }
&nbsp;
            Console.ReadKey();
        }
    }
}</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://users.atw.hu/csharpkodok/?feed=rss2&amp;p=108</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
