1-) C# - İf Else Random Mediplayer Örnek Uygulama(Ders14)zar atma ilk örnekpublic partial class Form1 : Form
{
public Form1()
InitializeComponent();
}
Random sayıuret = new Random();
private void button1_Click(object sender, EventArgs e)
int a = sayıuret.Next(1, 7);
int b = sayıuret.Next(1, 7);
label1.Text = a.ToString();
label2.Text = b.ToString();
private void button2_Click(object sender, EventArgs e)