> ## Content Index
> Fetch the complete content index at: https://gokselozardali.com/llms.txt
> Use this file to discover other available public pages before exploring further.

# Csharp örnekleri
- URL: https://gokselozardali.com/csharp-ornekleri-1/
- Published: 2012-04-26T10:36:52.000Z
- Updated: 2025-01-12T18:12:10.000Z
- Author: Goksel
- Tags: C# Programlama, #Import 2026-01-01 22:09

**Klavyeden girilen 2 adet sayıyı toplayıp ekrandaki label’a yazdıran C# uygulaması;**

**Bu uygulama için,**

**2 Adet Textbox;**

**1 Adet buton;**

**1 Adet Label ( sonucu göstermek için) Diğer label’lar ile bir işlem yapılmamıştır.**

**![](https://gokselozardali.com/content/images/wordpress/2012/04/ekran1.jpg "ekran1")**

using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

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)

{
 

}

// Buton içerisine yazılacak kodlar;

private void hesapla_Click(object sender, EventArgs e)

{

int toplam;

toplam = Convert.ToInt32(txt1.Text) + Convert.ToInt32(txt2.Text);

lblsonuc.Text = toplam.ToString();

}

}

}

**Ve sonuç:**

![](https://gokselozardali.com/content/images/wordpress/2012/04/ekran2.jpg "ekran2")