// Yazi - Tura Oyunu | www.aliakyildirim.com | Ali AKYILDIRIM
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;
// Yazi - Tura Oyunu | www.aliakyildirim.com | Ali AKYILDIRIM
namespace YaziTuraOyunu
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        private void btnParaAt_Click(object sender, EventArgs e)
        {
            Random rnd = new Random();
            // Bool’de sadece "true" ve "false" seçenegi vardir.
            // Bool tipinde rasgele bir degisken tanimlayalim:
            bool turaMi = Convert.ToBoolean(rnd.Next(2));
            switch (turaMi)
            {
                case true:
                    lblsonuc.Text = "TURA";
                    break;
                case false:
                    lblsonuc.Text = "YAZI";
                    break;
                default:
                    break;
            }
        }
    }
}
// Yazi - Tura Oyunu | www.aliakyildirim.com | Ali AKYILDIRIM