<?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ı</title>
	<atom:link href="http://www.csharpkitabi.com/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, 03 Feb 2012 13:13:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Photoshopta renkleri ters çevirmek</title>
		<link>http://www.csharpkitabi.com/photoshop/photoshopta-renkleri-ters-cevirmek.aspx</link>
		<comments>http://www.csharpkitabi.com/photoshop/photoshopta-renkleri-ters-cevirmek.aspx#comments</comments>
		<pubDate>Fri, 03 Feb 2012 13:13:19 +0000</pubDate>
		<dc:creator>Özcan BAYĞUŞ</dc:creator>
				<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://www.csharpkitabi.com/?p=5283</guid>
		<description><![CDATA[Image>Adjustments>Invert (crtl+i)]]></description>
			<content:encoded><![CDATA[<p>Image>Adjustments>Invert (crtl+i)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.csharpkitabi.com/photoshop/photoshopta-renkleri-ters-cevirmek.aspx/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bir ReferentialConstraint&#8217;teki bağımlı bir özellik depo tarafından üretilmiş bir sütuna eşlendi. Sütun: &#8216;ID&#8217;.</title>
		<link>http://www.csharpkitabi.com/hatalar-debug/bir-referentialconstraintteki-bagimli-bir-ozellik-depo-tarafindan-uretilmis-bir-sutuna-eslendi-sutun-id.aspx</link>
		<comments>http://www.csharpkitabi.com/hatalar-debug/bir-referentialconstraintteki-bagimli-bir-ozellik-depo-tarafindan-uretilmis-bir-sutuna-eslendi-sutun-id.aspx#comments</comments>
		<pubDate>Thu, 19 Jan 2012 13:16:15 +0000</pubDate>
		<dc:creator>Özcan BAYĞUŞ</dc:creator>
				<category><![CDATA[Hatalar - Debug]]></category>

		<guid isPermaLink="false">http://www.csharpkitabi.com/?p=4962</guid>
		<description><![CDATA[MSSQL de ReferentialConstraint tanımlarken yeni Keys oluştururken oluşturduğunuz key id ile tanımlanmış alana kayıt girmeye çalışıyor. Yani ID alanı identity olarak tanımlandığı için doğal olarak bir artarak bu alana otomatik kayıt girileceğinden dolayı siz bu alanı değiştirmeye çalıştığınızdan dolayı hata verir.]]></description>
			<content:encoded><![CDATA[<p>MSSQL de ReferentialConstraint tanımlarken yeni Keys oluştururken oluşturduğunuz key id ile tanımlanmış alana kayıt girmeye çalışıyor. Yani ID alanı identity olarak tanımlandığı için doğal olarak bir artarak bu alana otomatik kayıt girileceğinden dolayı siz bu alanı değiştirmeye çalıştığınızdan dolayı hata verir.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.csharpkitabi.com/hatalar-debug/bir-referentialconstraintteki-bagimli-bir-ozellik-depo-tarafindan-uretilmis-bir-sutuna-eslendi-sutun-id.aspx/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSharp Üçgen Kontrolü</title>
		<link>http://www.csharpkitabi.com/csharp-ornekleri/csharp-console-ornekleri/csharp-ucgen-kontrolu.aspx</link>
		<comments>http://www.csharpkitabi.com/csharp-ornekleri/csharp-console-ornekleri/csharp-ucgen-kontrolu.aspx#comments</comments>
		<pubDate>Sun, 08 Jan 2012 22:14:13 +0000</pubDate>
		<dc:creator>Özcan BAYĞUŞ</dc:creator>
				<category><![CDATA[CSharp Console Örnekleri]]></category>

		<guid isPermaLink="false">http://www.csharpkitabi.com/?p=4605</guid>
		<description><![CDATA[Console.Write("1. Kenar Uzunluğu :"); int kenar1 = Convert.ToInt32(Console.ReadLine()); Console.Write("2. Kenar Uzunluğu :"); int kenar2 = Convert.ToInt32(Console.ReadLine()); Console.Write("3. Kenar Uzunluğu :"); int kenar3 = Convert.ToInt32(Console.ReadLine()); // Üçgen değil mi ? // temp değişkeni matematiksel işlemde büyük ten küçüğü // çıkarırken hata olmasın diye yazıldı int temp = 0; if (kenar1 < kenar2) { temp = kenar1; [...]]]></description>
			<content:encoded><![CDATA[<pre>
        Console.Write("1. Kenar Uzunluğu :");
        int kenar1 = Convert.ToInt32(Console.ReadLine());
        Console.Write("2. Kenar Uzunluğu :");
        int kenar2 = Convert.ToInt32(Console.ReadLine());
        Console.Write("3. Kenar Uzunluğu :");
        int kenar3 = Convert.ToInt32(Console.ReadLine());

        // Üçgen değil mi ?
        // temp değişkeni matematiksel işlemde büyük ten küçüğü
        // çıkarırken hata olmasın diye yazıldı
        int temp = 0;

        if (kenar1 < kenar2)
        {
            temp = kenar1;
            kenar1 = kenar2;
            kenar2 = temp;
        }

        if (((kenar1 + kenar2) <= kenar3) || ((kenar1 - kenar2) >= kenar3))
        {
            Console.WriteLine("Bu kenar uzunluklarina sahip bir ucgen olamaz.\n");
        }
        else if ((kenar1 == kenar2) &#038;&#038; (kenar3 == kenar1)) // eş kenar üçgen mi ?
        {
            Console.WriteLine("Eş Kenar Üçgen.\n");
        }
        else if ((kenar1 == kenar2) || (kenar2 == kenar3) || (kenar1 == kenar3))
        {
            Console.WriteLine("İkiz Kenar Üçgen.\n");
        }
        else
        {
            Console.WriteLine("Çeşit Kenar Üçgen.\n");
        }

        Console.ReadLine();
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.csharpkitabi.com/csharp-ornekleri/csharp-console-ornekleri/csharp-ucgen-kontrolu.aspx/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visual Studio Ayarları Sıfırlamak (Visual Studio Başlangıç Ayarları)</title>
		<link>http://www.csharpkitabi.com/genel/visual-studio-ayarlari-sifirlamak-visual-studio-baslangic-ayarlari.aspx</link>
		<comments>http://www.csharpkitabi.com/genel/visual-studio-ayarlari-sifirlamak-visual-studio-baslangic-ayarlari.aspx#comments</comments>
		<pubDate>Sat, 07 Jan 2012 13:45:55 +0000</pubDate>
		<dc:creator>Özcan BAYĞUŞ</dc:creator>
				<category><![CDATA[Genel]]></category>

		<guid isPermaLink="false">http://www.csharpkitabi.com/?p=4529</guid>
		<description><![CDATA[On the Tools menu, click Import and Export Settings. On the Welcome to the Import and Export Settings Wizard page, click Reset all settings and then click Next. If you want to save your current settings combination, click Yes, save my current settings, specify a file name, and then click Next. —or— If you want to delete your current settings combination, choose No, just reset settings, [...]]]></description>
			<content:encoded><![CDATA[<ol>
<li>On the <strong>Tools</strong> menu, click <strong>Import and Export Settings</strong>.</li>
<li>On the <strong>Welcome to the Import and Export Settings Wizard</strong> page, click <strong>Reset all settings</strong> and then click<strong> Next</strong>.</li>
<li>If you want to save your current settings combination, click <strong>Yes, save my current settings</strong>, specify a file name, and then click <strong>Next</strong>.
<p>—or—</p>
<p>If you want to delete your current settings combination, choose <strong>No, just reset settings, overwriting my current settings</strong>, and then click <strong>Next</strong>. This option does not delete default settings, which will still be available the next time you use the wizard.</li>
<li>In <strong>Which collection of settings do you want to reset to</strong>, select a settings collection from the list.</li>
<li>Click <strong>Finish</strong>.
<p>The <strong>Reset Complete</strong> page alerts you to any problems encountered during the reset.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.csharpkitabi.com/genel/visual-studio-ayarlari-sifirlamak-visual-studio-baslangic-ayarlari.aspx/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Visual Studio’da satır numarası gösterme</title>
		<link>http://www.csharpkitabi.com/genel/microsoft-visual-studioda-satir-numarasi-gosterme.aspx</link>
		<comments>http://www.csharpkitabi.com/genel/microsoft-visual-studioda-satir-numarasi-gosterme.aspx#comments</comments>
		<pubDate>Sat, 07 Jan 2012 13:43:07 +0000</pubDate>
		<dc:creator>Özcan BAYĞUŞ</dc:creator>
				<category><![CDATA[Genel]]></category>

		<guid isPermaLink="false">http://www.csharpkitabi.com/?p=4527</guid>
		<description><![CDATA[Microsoft Visual Studio’da kodların yanında satır numarası göstermek için Üst Menüden Tools- Options açın. Sonra Text Editor altındaki All Language vd. Line numbers işaretleyin. Bu kadar]]></description>
			<content:encoded><![CDATA[<p>Microsoft Visual Studio’da kodların yanında satır numarası göstermek için Üst Menüden <strong>Tools</strong>- <strong>Options</strong> açın.</p>
<p>Sonra<strong> Text Editor</strong> altındaki <strong>All Language</strong> vd. <strong>Line numbers</strong> işaretleyin. Bu kadar</p>
]]></content:encoded>
			<wfw:commentRss>http://www.csharpkitabi.com/genel/microsoft-visual-studioda-satir-numarasi-gosterme.aspx/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>n tane sayı m basamaklı rakamlarını toplayan program</title>
		<link>http://www.csharpkitabi.com/csharp-ornekleri/csharp-console-ornekleri/n-tane-sayi-m-basamakli-rakamlarini-toplayan-program.aspx</link>
		<comments>http://www.csharpkitabi.com/csharp-ornekleri/csharp-console-ornekleri/n-tane-sayi-m-basamakli-rakamlarini-toplayan-program.aspx#comments</comments>
		<pubDate>Fri, 06 Jan 2012 21:36:51 +0000</pubDate>
		<dc:creator>Özcan BAYĞUŞ</dc:creator>
				<category><![CDATA[CSharp Console Örnekleri]]></category>
		<category><![CDATA[CSharp Form Örnekleri]]></category>

		<guid isPermaLink="false">http://www.csharpkitabi.com/?p=4507</guid>
		<description><![CDATA[Console int n = 9; int toplam = 0; for (int i = 1; i]]></description>
			<content:encoded><![CDATA[<p>Console</p>
<pre>        int n = 9;
        int toplam = 0;

        for (int i = 1; i <= n; i++)
        {
            string sayi = i.ToString();

            foreach (char x in sayi)
            {
                toplam = toplam + Convert.ToInt32(x.ToString());
            }
        }

        Console.WriteLine(toplam.ToString());

        Console.ReadLine();
</pre>
<p>Form</p>
<pre>          int n = 9;
        int toplam = 0;

        for (int i = 1; i <= n; i++)
        {
            string sayi = i.ToString();

            foreach (char x in sayi)
            {
                toplam = toplam + Convert.ToInt32(x.ToString());
            }
        }

        MessageBox.Show(toplam.ToString());
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.csharpkitabi.com/csharp-ornekleri/csharp-console-ornekleri/n-tane-sayi-m-basamakli-rakamlarini-toplayan-program.aspx/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>C# Taban Dönüşümleri (Sayılarda Taban İşlemleri)</title>
		<link>http://www.csharpkitabi.com/csharp-ornekleri/csharp-console-ornekleri/c-taban-donusumleri-sayilarda-taban-islemleri.aspx</link>
		<comments>http://www.csharpkitabi.com/csharp-ornekleri/csharp-console-ornekleri/c-taban-donusumleri-sayilarda-taban-islemleri.aspx#comments</comments>
		<pubDate>Thu, 05 Jan 2012 20:46:51 +0000</pubDate>
		<dc:creator>Özcan BAYĞUŞ</dc:creator>
				<category><![CDATA[CSharp Console Örnekleri]]></category>

		<guid isPermaLink="false">http://www.csharpkitabi.com/?p=4474</guid>
		<description><![CDATA[string x = "1111111111"; Console.WriteLine(Convert.ToString(Convert.ToInt32(x, 2), 8)+ " 2 lik sayıyı 8 lik sisteme çevirdik"); Console.WriteLine(Convert.ToString(Convert.ToInt32(x, 2), 10) + " 2 lik sayıyı 10 lik sisteme çevirdik"); Console.WriteLine(Convert.ToString(Convert.ToInt32(x, 2), 16) + " 2 lik sayıyı 16 lik sisteme çevirdik"); x = "147"; Console.WriteLine(Convert.ToString(Convert.ToInt32(x, 8), 2) + " 8 lik sayıyı 2 lik sisteme çevirdik"); Console.WriteLine(Convert.ToString(Convert.ToInt32(x, [...]]]></description>
			<content:encoded><![CDATA[<pre>
 string x = "1111111111";
        Console.WriteLine(Convert.ToString(Convert.ToInt32(x, 2), 8)+ " 2 lik sayıyı 8 lik sisteme çevirdik");
        Console.WriteLine(Convert.ToString(Convert.ToInt32(x, 2), 10) + " 2 lik sayıyı 10 lik sisteme çevirdik");
        Console.WriteLine(Convert.ToString(Convert.ToInt32(x, 2), 16) + " 2 lik sayıyı 16 lik sisteme çevirdik");

        x = "147";

        Console.WriteLine(Convert.ToString(Convert.ToInt32(x, 8), 2) + " 8 lik sayıyı 2 lik sisteme çevirdik");
        Console.WriteLine(Convert.ToString(Convert.ToInt32(x, 8), 10) + " 8 lik sayıyı 10 lik sisteme çevirdik");
        Console.WriteLine(Convert.ToString(Convert.ToInt32(x, 8), 16) + " 8 lik sayıyı 16 lik sisteme çevirdik");

        x = "3176";

        Console.WriteLine(Convert.ToString(Convert.ToInt32(x, 10), 2) + " 10 lik sayıyı 2 lik sisteme çevirdik");
        Console.WriteLine(Convert.ToString(Convert.ToInt32(x, 10), 8) + " 10 lik sayıyı 8 lik sisteme çevirdik");
        Console.WriteLine(Convert.ToString(Convert.ToInt32(x, 10), 16) + " 10 lik sayıyı 16 lik sisteme çevirdik");

        x = "ABC";

        Console.WriteLine(Convert.ToString(Convert.ToInt32(x, 16), 2) + " 16 lik sayıyı 2 lik sisteme çevirdik");
        Console.WriteLine(Convert.ToString(Convert.ToInt32(x, 16), 8) + " 16 lik sayıyı 8 lik sisteme çevirdik");
        Console.WriteLine(Convert.ToString(Convert.ToInt32(x, 16), 10) + " 16 lik sayıyı 10 lik sisteme çevirdik");

        Console.ReadLine();
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.csharpkitabi.com/csharp-ornekleri/csharp-console-ornekleri/c-taban-donusumleri-sayilarda-taban-islemleri.aspx/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>150 ile 410 arasındaki tamsayılardan; her basamaktaki sayının küpleri toplamı kendisine eşit olan sayıları bularak yazdıran program</title>
		<link>http://www.csharpkitabi.com/csharp-ornekleri/csharp-console-ornekleri/150-ile-410-arasindaki-tamsayilardan-her-basamaktaki-sayinin-kupleri-toplami-kendisine-esit-olan-sayilari-bularak-yazdiran-program.aspx</link>
		<comments>http://www.csharpkitabi.com/csharp-ornekleri/csharp-console-ornekleri/150-ile-410-arasindaki-tamsayilardan-her-basamaktaki-sayinin-kupleri-toplami-kendisine-esit-olan-sayilari-bularak-yazdiran-program.aspx#comments</comments>
		<pubDate>Thu, 05 Jan 2012 20:28:58 +0000</pubDate>
		<dc:creator>Özcan BAYĞUŞ</dc:creator>
				<category><![CDATA[CSharp Console Örnekleri]]></category>

		<guid isPermaLink="false">http://www.csharpkitabi.com/?p=4470</guid>
		<description><![CDATA[for (int sayi = 150; sayi]]></description>
			<content:encoded><![CDATA[<pre>
        for (int sayi = 150; sayi <= 400; sayi++)
        {

            int yuzler = sayi / 100;

            int onlar = (sayi % 100) / 10;

            int birler = sayi % 10;

            int kupleriTopla = (yuzler * yuzler * yuzler) + (onlar * onlar * onlar) + (birler * birler * birler);

            if (kupleriTopla == sayi)
                Console.WriteLine(sayi.ToString() +" sayısı eşittir");
        }
        Console.ReadLine();
</pre>
<p>Sonuç : 153 - 370 -371</p>
]]></content:encoded>
			<wfw:commentRss>http://www.csharpkitabi.com/csharp-ornekleri/csharp-console-ornekleri/150-ile-410-arasindaki-tamsayilardan-her-basamaktaki-sayinin-kupleri-toplami-kendisine-esit-olan-sayilari-bularak-yazdiran-program.aspx/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C# Burç Programı</title>
		<link>http://www.csharpkitabi.com/csharp-ornekleri/csharp-form-ornekleri/c-burc-programi.aspx</link>
		<comments>http://www.csharpkitabi.com/csharp-ornekleri/csharp-form-ornekleri/c-burc-programi.aspx#comments</comments>
		<pubDate>Thu, 05 Jan 2012 20:02:28 +0000</pubDate>
		<dc:creator>Özcan BAYĞUŞ</dc:creator>
				<category><![CDATA[CSharp Form Örnekleri]]></category>

		<guid isPermaLink="false">http://www.csharpkitabi.com/?p=4465</guid>
		<description><![CDATA[Burç Projesini İndir string isim=textBox1.Text; int yas=2010-Convert.ToInt32(comboBox3.Text); string burc = ""; if (Convert.ToInt32(comboBox1.Text) >= 21 &#038;&#038; Convert.ToInt32(comboBox2.Text) == 03 &#124;&#124; Convert.ToInt32(comboBox1.Text) = 21 &#038;&#038; Convert.ToInt32(comboBox2.Text) == 04 &#124;&#124; Convert.ToInt32(comboBox1.Text) = 22 &#038;&#038; Convert.ToInt32(comboBox2.Text) == 05 &#124;&#124; Convert.ToInt32(comboBox1.Text) = 22 &#038;&#038; Convert.ToInt32(comboBox2.Text) == 06 &#124;&#124; Convert.ToInt32(comboBox1.Text) = 23 &#038;&#038; Convert.ToInt32(comboBox2.Text) == 07 &#124;&#124; Convert.ToInt32(comboBox1.Text) = 24 [...]]]></description>
			<content:encoded><![CDATA[<p><a href='http://www.csharpkitabi.com/wp-content/uploads/2012/01/burclar.zip'>Burç Projesini İndir</a></p>
<pre>
string isim=textBox1.Text;
            int yas=2010-Convert.ToInt32(comboBox3.Text);
            string burc = "";
            if (Convert.ToInt32(comboBox1.Text) >= 21 &#038;&#038; Convert.ToInt32(comboBox2.Text) == 03 || Convert.ToInt32(comboBox1.Text) <= 20 &#038;&#038; Convert.ToInt32(comboBox2.Text) == 04)
                burc = "KOÇ";
            if (Convert.ToInt32(comboBox1.Text) >= 21 &#038;&#038; Convert.ToInt32(comboBox2.Text) == 04 || Convert.ToInt32(comboBox1.Text) <= 21 &#038;&#038; Convert.ToInt32(comboBox2.Text) == 05)
                burc = "BOĞA";
            if (Convert.ToInt32(comboBox1.Text) >= 22 &#038;&#038; Convert.ToInt32(comboBox2.Text) == 05 || Convert.ToInt32(comboBox1.Text) <= 21 &#038;&#038; Convert.ToInt32(comboBox2.Text) == 06)
                burc = "İKİZLER";
            if (Convert.ToInt32(comboBox1.Text) >= 22 &#038;&#038; Convert.ToInt32(comboBox2.Text) == 06 || Convert.ToInt32(comboBox1.Text) <= 22 &#038;&#038; Convert.ToInt32(comboBox2.Text) == 07)
                burc = "YENGEÇ";
            if (Convert.ToInt32(comboBox1.Text) >= 23 &#038;&#038; Convert.ToInt32(comboBox2.Text) == 07 || Convert.ToInt32(comboBox1.Text) <= 23 &#038;&#038; Convert.ToInt32(comboBox2.Text) == 08)
                burc = "ASLAN";
            if (Convert.ToInt32(comboBox1.Text) >= 24 &#038;&#038; Convert.ToInt32(comboBox2.Text) == 08 || Convert.ToInt32(comboBox1.Text) <= 22 &#038;&#038; Convert.ToInt32(comboBox2.Text) == 09)
                burc = "BAŞAK";
            if (Convert.ToInt32(comboBox1.Text) >= 23 &#038;&#038; Convert.ToInt32(comboBox2.Text) == 09 || Convert.ToInt32(comboBox1.Text) <= 22 &#038;&#038; Convert.ToInt32(comboBox2.Text) == 10)
                burc = "TERAZİ";
            if (Convert.ToInt32(comboBox1.Text) >= 24 &#038;&#038; Convert.ToInt32(comboBox2.Text) == 10 || Convert.ToInt32(comboBox1.Text) <= 22 &#038;&#038; Convert.ToInt32(comboBox2.Text) == 11)
                burc = "AKREP";
            if (Convert.ToInt32(comboBox1.Text) >= 23 &#038;&#038; Convert.ToInt32(comboBox2.Text) == 11 || Convert.ToInt32(comboBox1.Text) <= 21 &#038;&#038; Convert.ToInt32(comboBox2.Text) == 12)
                burc = "YAY";
            if (Convert.ToInt32(comboBox1.Text) >= 22 &#038;&#038; Convert.ToInt32(comboBox2.Text) == 12 || Convert.ToInt32(comboBox1.Text) <= 20 &#038;&#038; Convert.ToInt32(comboBox2.Text) == 01)
                burc = "OGLAK";
            if (Convert.ToInt32(comboBox1.Text) >= 21 &#038;&#038; Convert.ToInt32(comboBox2.Text) == 01 || Convert.ToInt32(comboBox1.Text) <= 18 &#038;&#038; Convert.ToInt32(comboBox2.Text) == 02)
                burc = "KOVA";
            if (Convert.ToInt32(comboBox1.Text) >= 19 &#038;&#038; Convert.ToInt32(comboBox2.Text) == 02 || Convert.ToInt32(comboBox1.Text) <= 20 &#038;&#038; Convert.ToInt32(comboBox2.Text) == 03)
                burc = "BALIK";

            MessageBox.Show("Merhaba "+isim+" "+yas+" yaşındasın"+" burcun "+burc.ToString());
            if (burc == "KOÇ")
            {
                listBox1.Items.Clear();
                pictureBox1.BackgroundImage = System.Drawing.Image.FromFile(AppDomain.CurrentDomain.BaseDirectory+"\\KOÇ.jpg");
                listBox1.Items.Add("Güçlüdür ");
            }
            if (burc == "BOĞA")
            {
                listBox1.Items.Clear();
                pictureBox1.BackgroundImage = System.Drawing.Image.FromFile(AppDomain.CurrentDomain.BaseDirectory+"\\BOĞA.jpg");
                listBox1.Items.Add("Evcildir ");
            }
            if (burc == "İKİZLER")
            {
                listBox1.Items.Clear();
                pictureBox1.BackgroundImage = System.Drawing.Image.FromFile(AppDomain.CurrentDomain.BaseDirectory+"\\İKİZLER.jpg");
                listBox1.Items.Add("dengesizsin ");
                listBox1.Items.Add("ama zekisin neşelisin gezmeyi seversin.");
            }
            if (burc == "YENGEÇ")
            {
                listBox1.Items.Clear();
                pictureBox1.BackgroundImage = System.Drawing.Image.FromFile(AppDomain.CurrentDomain.BaseDirectory+"\\YENGEÇ.jpg");
                listBox1.Items.Add("Cabuk sinirlenir Ama pişmanlık duyar ");
            }
            if (burc == "ASLAN")
            {
                listBox1.Items.Clear();
                pictureBox1.BackgroundImage = System.Drawing.Image.FromFile(AppDomain.CurrentDomain.BaseDirectory+"\\ASLAN.jpg");
                listBox1.Items.Add("eleştirilmeyi sevmez ");
                listBox1.Items.Add("kendisini tasıyabilecek,dış görünüse onem veren kişileri sever ");
            }
            if (burc == "BAŞAK")
            {
                listBox1.Items.Clear();
                pictureBox1.BackgroundImage = System.Drawing.Image.FromFile(AppDomain.CurrentDomain.BaseDirectory+"\\BAŞAK.jpg");
                listBox1.Items.Add("ince eler sık dokur,ayrıntıcıdır ");
                listBox1.Items.Add("dost canlısıdır ");
            }
            if (burc == "TERAZİ")
            {
                listBox1.Items.Clear();
                pictureBox1.BackgroundImage = System.Drawing.Image.FromFile(AppDomain.CurrentDomain.BaseDirectory+"\\TERAZİ.jpg");
                listBox1.Items.Add("Fırtına öncesi sessizliği gibidir. ");
                listBox1.Items.Add("dost canlısıdır,insanlara kendisini hemen sevdirir. ");
            }
            if (burc == "AKREP")
            {
                listBox1.Items.Clear();
                pictureBox1.BackgroundImage = System.Drawing.Image.FromFile(AppDomain.CurrentDomain.BaseDirectory+"\\AKREP.jpg");
                listBox1.Items.Add("Sinsidir..Kafasına koydugunu yapar.");
            }
            if (burc == "YAY")
            {
                listBox1.Items.Clear();
                pictureBox1.BackgroundImage = System.Drawing.Image.FromFile(AppDomain.CurrentDomain.BaseDirectory+"\\YAY.jpg");
                listBox1.Items.Add("Ayran gönüllüdür");
            }
            if (burc == "OGLAK")
            {
                listBox1.Items.Clear();
                pictureBox1.BackgroundImage = System.Drawing.Image.FromFile(AppDomain.CurrentDomain.BaseDirectory+"\\OĞLAK.jpg");
                listBox1.Items.Add("Mükemmelliyetçidir. ");
            }
            if (burc == "KOVA")
            {
                listBox1.Items.Clear();
                pictureBox1.BackgroundImage = System.Drawing.Image.FromFile(AppDomain.CurrentDomain.BaseDirectory+"\\KOVA.jpg");
                listBox1.Items.Add("Özgürlüğüne düşkündür.Kısıtlanmayı sevmez. ");
            }
            if (burc == "BALIK")
            {
                listBox1.Items.Clear();
                pictureBox1.BackgroundImage = System.Drawing.Image.FromFile(AppDomain.CurrentDomain.BaseDirectory+"\\BALIK.jpg");
                listBox1.Items.Add("Cok duygusal ve hayalcidir. ");
                listBox1.Items.Add("yardımseverdir fakat cok mızmız ve alıngandır. ");
                listBox1.Items.Add("birgun evden bakkala gidiyorum diye cıkıp hiç dönmeyebilir. ");
            }
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.csharpkitabi.com/csharp-ornekleri/csharp-form-ornekleri/c-burc-programi.aspx/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>1 den 50 ye kadar tek sayıların karesini çift sayıların küpünü yazdırmak</title>
		<link>http://www.csharpkitabi.com/csharp-ornekleri/csharp-console-ornekleri/1-den-50-ye-kadar-tek-sayilarin-karesini-cift-sayilarin-kupunu-yazdirmak.aspx</link>
		<comments>http://www.csharpkitabi.com/csharp-ornekleri/csharp-console-ornekleri/1-den-50-ye-kadar-tek-sayilarin-karesini-cift-sayilarin-kupunu-yazdirmak.aspx#comments</comments>
		<pubDate>Tue, 27 Dec 2011 21:41:31 +0000</pubDate>
		<dc:creator>Özcan BAYĞUŞ</dc:creator>
				<category><![CDATA[CSharp Console Örnekleri]]></category>

		<guid isPermaLink="false">http://www.csharpkitabi.com/?p=4037</guid>
		<description><![CDATA[int sonuc = 0; for (int i = 1; i]]></description>
			<content:encoded><![CDATA[<pre>            int sonuc = 0;
            for (int i = 1; i <= 50; i++)
            {
                if (i % 2 == 0) // i nin 2 ye bölümünden kalan sıfırsa sayı çift tir.
                {
                    // çift sayı ise küpünü aldık.
                    sonuc = i * i * i;
                    Console.WriteLine(i.ToString() + " Küpü = " + sonuc.ToString());
                }
                else
                {
                    // 2 ye kalansız bölünemiyorsa tek sayıdır. Karesini aldık.
                    sonuc = i * i;
                    Console.WriteLine(i.ToString() + " Karesi = " + sonuc.ToString());

                }

            }
            Console.ReadLine();
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.csharpkitabi.com/csharp-ornekleri/csharp-console-ornekleri/1-den-50-ye-kadar-tek-sayilarin-karesini-cift-sayilarin-kupunu-yazdirmak.aspx/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

