<?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# Kitabı &#187; İzzet ASLAN</title>
	<atom:link href="http://www.csharpkitabi.com/author/zztsln/feed" rel="self" type="application/rss+xml" />
	<link>http://www.csharpkitabi.com</link>
	<description>C Sharp Kitabı, CSHARP Makalesi, C# Dersleri ve C# Örnekleri</description>
	<lastBuildDate>Fri, 06 Apr 2012 20:25:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Windows Server 2008 Notları</title>
		<link>http://www.csharpkitabi.com/windows-server-2008/windows-server-2008-notlari.aspx</link>
		<comments>http://www.csharpkitabi.com/windows-server-2008/windows-server-2008-notlari.aspx#comments</comments>
		<pubDate>Fri, 06 Apr 2012 20:25:22 +0000</pubDate>
		<dc:creator>İzzet ASLAN</dc:creator>
				<category><![CDATA[Windows Server 2008]]></category>

		<guid isPermaLink="false">http://www.csharpkitabi.com/?p=5637</guid>
		<description><![CDATA[Sunucu İşletim Sistemi Ders Notları https://hotfile.com/dl/152044399/0017266/Sunucu_letim_Sistemi.rar.html]]></description>
			<content:encoded><![CDATA[<p>Sunucu İşletim Sistemi Ders Notları</p>
<p><a href="https://hotfile.com/dl/152044399/0017266/Sunucu_letim_Sistemi.rar.html" rel="nofollow nofollow" target="_blank">https://hotfile.com/dl/<wbr>152044399/0017266/<wbr>Sunucu_letim_Sistemi.rar.html</wbr></wbr></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.csharpkitabi.com/windows-server-2008/windows-server-2008-notlari.aspx/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Girilen sayı asal mı değil mi?</title>
		<link>http://www.csharpkitabi.com/csharp-ornekleri/csharp-form-ornekleri/girilen-sayi-asam-mi-degil-mi.aspx</link>
		<comments>http://www.csharpkitabi.com/csharp-ornekleri/csharp-form-ornekleri/girilen-sayi-asam-mi-degil-mi.aspx#comments</comments>
		<pubDate>Wed, 15 Feb 2012 22:32:57 +0000</pubDate>
		<dc:creator>İzzet ASLAN</dc:creator>
				<category><![CDATA[CSharp Form Örnekleri]]></category>
		<category><![CDATA[asal sayılar]]></category>

		<guid isPermaLink="false">http://www.csharpkitabi.com/?p=5606</guid>
		<description><![CDATA[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; namespace WindowsFormsApplication2 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { label2.Text = ""; } private void button1_Click(object sender, EventArgs e) { int sayi = Convert.ToInt32(textBox1.Text); for (int [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.csharpkitabi.com/wp-content/uploads/2012/02/Adsız.png"><img class=" wp-image-5607 alignnone" title="Girilen Sayı Asal Mı?" src="http://www.csharpkitabi.com/wp-content/uploads/2012/02/Adsız.png" alt="" width="246" height="165" /></a></p>
<pre>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;

namespace WindowsFormsApplication2
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            label2.Text = "";
        }
        private void button1_Click(object sender, EventArgs e)
        {
            int sayi = Convert.ToInt32(textBox1.Text);
            for (int i = 2; i &lt; sayi; i++)
            {
                if (sayi % i == 0)
                {
                    label2.Text = sayi.ToString() + " Sayısı Asal Değildir!";
                    break;
                }
                else
                {
                    label2.Text = sayi.ToString() + " Sayısı Asaldır";

               }
         }
       }
     }
    }</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.csharpkitabi.com/csharp-ornekleri/csharp-form-ornekleri/girilen-sayi-asam-mi-degil-mi.aspx/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hesap Makinesi Kodları</title>
		<link>http://www.csharpkitabi.com/csharp-ornekleri/csharp-form-ornekleri/hesap-makinesi-kodlari-2.aspx</link>
		<comments>http://www.csharpkitabi.com/csharp-ornekleri/csharp-form-ornekleri/hesap-makinesi-kodlari-2.aspx#comments</comments>
		<pubDate>Wed, 15 Feb 2012 13:03:05 +0000</pubDate>
		<dc:creator>İzzet ASLAN</dc:creator>
				<category><![CDATA[CSharp Form Örnekleri]]></category>
		<category><![CDATA[c sharp hesap makinesi kodları]]></category>
		<category><![CDATA[Hesap Makinesi Kodları]]></category>

		<guid isPermaLink="false">http://www.csharpkitabi.com/?p=5601</guid>
		<description><![CDATA[&#160; &#160; &#160; &#160; &#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; namespace HesapMakinesi { public partial class Form1 : Form { double ilk_sayı = 0; public Form1() { InitializeComponent(); } private void textBox1_TextChanged(object sender, EventArgs e) { } private void button1_Click(object sender, EventArgs e) { [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.csharpkitabi.com/wp-content/uploads/2012/02/Hesap-Makinesi.png"><img class="alignleft size-thumbnail wp-image-5602" title="Hesap Makinesi" src="http://www.csharpkitabi.com/wp-content/uploads/2012/02/Hesap-Makinesi-150x150.png" alt="" width="150" height="150" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<pre>
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;

namespace HesapMakinesi
{
public partial class Form1 : Form
{
double ilk_sayı = 0;
public Form1()
{
InitializeComponent();
}

private void textBox1_TextChanged(object sender, EventArgs e)
{

}

private void button1_Click(object sender, EventArgs e)
{
if (ilk_sayı != 0) textBox1.Text = "0";
if (textBox1.Text == "0") textBox1.Text = "";
textBox1.Text = textBox1.Text + button1.Text;
}

private void button2_Click(object sender, EventArgs e)
{
if (ilk_sayı != 0) textBox1.Text = "0";

if (textBox1.Text == "0") textBox1.Text = "";
textBox1.Text = textBox1.Text + button2.Text;

}

private void button3_Click(object sender, EventArgs e)
{
if (ilk_sayı != 0) textBox1.Text = "0";

if (textBox1.Text == "0") textBox1.Text = "";
textBox1.Text = textBox1.Text + button3.Text;
}

private void button4_Click(object sender, EventArgs e)
{
if (ilk_sayı != 0) textBox1.Text = "0";

if (textBox1.Text == "0") textBox1.Text = "";
textBox1.Text = textBox1.Text + button4.Text;
}

private void button5_Click(object sender, EventArgs e)
{
if (textBox1.Text == "0") textBox1.Text = "";
textBox1.Text = textBox1.Text + button5.Text;
}

private void button6_Click(object sender, EventArgs e)
{
if (textBox1.Text == "0") textBox1.Text = "";
textBox1.Text = textBox1.Text + button6.Text;
}

string işlem = "";
private void button7_Click(object sender, EventArgs e)
{
ilk_sayı = Convert.ToDouble(textBox1.Text);
textBox1.Text = "0";
işlem = "-";

}

private void button9_Click(object sender, EventArgs e)
{
if (işlem == "-")
textBox1.Text = (ilk_sayı - Convert.ToDouble(textBox1.Text)).ToString();
if (işlem == "*")
textBox1.Text = (ilk_sayı * Convert.ToDouble(textBox1.Text)).ToString();
if (işlem == "+")
textBox1.Text = (ilk_sayı + Convert.ToDouble(textBox1.Text)).ToString();
if (işlem == "/")
textBox1.Text = (ilk_sayı / Convert.ToDouble(textBox1.Text)).ToString();
}

private void button8_Click(object sender, EventArgs e)
{
ilk_sayı = Convert.ToDouble(textBox1.Text);
textBox1.Text = "0";
işlem = "*";
}

private void Form1_Load(object sender, EventArgs e)
{

}
double ikinci = 0;
private void button10_Click(object sender, EventArgs e)
{
if (ilk_sayı == 0)
{
ilk_sayı = Convert.ToDouble(textBox1.Text);
textBox1.Text = "0";
işlem = "+";
}
else
{
ikinci = ilk_sayı + Convert.ToDouble(textBox1.Text);
textBox1.Text = ikinci.ToString();

}
}

private void button11_Click(object sender, EventArgs e)
{
ilk_sayı = Convert.ToDouble(textBox1.Text);
textBox1.Text = "0";
işlem = "/";
}

private void button12_Click(object sender, EventArgs e)
{

textBox1.Text = textBox1.Text + button12.Text;

}

private void button15_Click(object sender, EventArgs e)
{
if (textBox1.Text == "0") textBox1.Text = "";
textBox1.Text = textBox1.Text + button15.Text;
}

private void button14_Click(object sender, EventArgs e)
{
if (textBox1.Text == "0") textBox1.Text = "";
textBox1.Text = textBox1.Text + button14.Text;
}

private void button13_Click(object sender, EventArgs e)
{
if (textBox1.Text == "0") textBox1.Text = "";
textBox1.Text = textBox1.Text + button13.Text;
}

private void button16_Click(object sender, EventArgs e)
{
if (textBox1.Text == "0") textBox1.Text = "";
textBox1.Text = textBox1.Text + button16.Text;
}

private void button17_Click(object sender, EventArgs e)
{
ilk_sayı = 0;
textBox1.Text = "0";
}

private void button18_Click(object sender, EventArgs e)
{
if (textBox1.Text.Length == 1) textBox1.Text = "0";
else
textBox1.Text = textBox1.Text.Substring(0, textBox1.Text.Length - 1);
}
}
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.csharpkitabi.com/csharp-ornekleri/csharp-form-ornekleri/hesap-makinesi-kodlari-2.aspx/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

