15 lines
301 B
C#
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;
|
|
}
|
|
}
|
|
}
|