private void Button_Click_2(object sender, RoutedEventArgs e) { sorteados1.Text = ""; int[] v = s.Sorteados(); foreach (int i in v) { sorteados1.Text += i.ToString(); sorteados1.Text += " "; } }
private void Sorteados(object sender, RoutedEventArgs e) { txtSorteados.Text = ""; int[] v = s.Sorteados(); foreach (int i in v) { txtSorteados.Text += i.ToString(); txtSorteados.Text += " "; } }