using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace try_catch_finally { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void btnHesapla_Click(object sender, EventArgs e) { try //program kodları buraya yazılacak { //txt alanlarına yazılan sayıları int olarak çevirmek için convert kullandık int say1, say2, toplam;//girilen değerleri int tam sayı olarak tanınması ...