I have a code for a data roller. Then the person will type in the field the amount of data that will roll and after that the program will rotate the amount of data and add up.
Then I made an array to receive this data but I can not add them ...
Random rnd = new Random();
int dado6lado;
private void button1_Click(object sender, EventArgs e)
{
int d6 = Convert.ToInt32(qtdD6.Text);
int[] qtd6 = new int[d6];
int soma = 0;
//aqui a função vai pegar a quantidade de dados em qtd6.Lenght, rolar e somar na variavel soma e após isso exibir o valor na ultima linha
for (int i = 0; i < qtd6.Length; i++ ) {
//Dado
dado6lados = rnd.Next(1, 7);
soma = dado6lados + qtd6[i] ;
resultadoD6.Text = soma.ToString();
}
}