guess-the-card/Form1.cs
2026-04-11 11:40:45 +07:00

15 lines
301 B
C#

namespace GuessTheCard
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
Random random = new Random();
int randomDice = random.Next(1, 7);
labelCard.Text = "Result : " + randomDice;
}
}
}