All I have it doing right now is displaying only the last element in the array I have and I want all of them to show up.
Thanks
private void button1_Click(object sender, EventArgs e)
{
string[] missingNumbers = txtKnown.Text.Split(' ');
for (int i = 0; i < missingNumbers.Length; i++)
{
txtMissing.Text = missingNumbers[i];
}
}

New Topic/Question
Reply



MultiQuote




|