<?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; Statikus osztályok</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>Statikus osztályok definiálása (idő, time, date)</title>
		<link>http://users.atw.hu/csharpkodok/?p=25</link>
		<comments>http://users.atw.hu/csharpkodok/?p=25#comments</comments>
		<pubDate>Wed, 15 Jul 2009 19:36:33 +0000</pubDate>
		<dc:creator>nameless</dc:creator>
				<category><![CDATA[kód]]></category>
		<category><![CDATA[datatime]]></category>
		<category><![CDATA[Statikus osztályok]]></category>

		<guid isPermaLink="false">http://users.atw.hu/csharpkodok/?p=25</guid>
		<description><![CDATA[Statikus osztályok definiálása (idő, time, date):


using System;
&#160;
namespace Program
{
    class MainClass
    {
        public static void Main()
        {
&#160;
            EntryPoint.PrintDate();
        [...]]]></description>
			<content:encoded><![CDATA[<p>Statikus osztályok definiálása (idő, time, date):<br />
<span id="more-25"></span></p>

<div class="wp_syntax"><div class="code"><pre class="language" style="font-family:monospace;">using System;
&nbsp;
namespace Program
{
    class MainClass
    {
        public static void Main()
        {
&nbsp;
            EntryPoint.PrintDate();
            EntryPoint.PrintTime();
&nbsp;
            Console.ReadKey();
        }
    }
&nbsp;
    //A statikus osztályok
    //kizárólag statikus adatokat foglalhatnak magukba!
    static class EntryPoint
    {
        public static void PrintTime()
        { Console.WriteLine(DateTime.Now.ToShortTimeString()); }
&nbsp;
        public static void PrintDate()
        { Console.WriteLine(DateTime.Today.ToShortDateString()); }
    }
}</pre></div></div>

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