Ahoj, chtěl bych se zeptat jesli tu nekdo neuvidi chybu proc mi tento program neprojede znovu pres goto a nevypisuje se mi druhe slovo...
int mezera1 = 0;
int mezera2 = 0;
start:
for (int i = mezera1; i < textBox1.Text.Length; i++)
{
if ((textBox1.Text[i] == Convert.ToChar(" ")))
{
mezera1 = i;
break;
}
}
if (mezera2 > 0)
mezera2 = mezera2 + 1;
for (int i = (mezera2); i < textBox1.Text.Length; i++)
{
mezera2 = i;
textBox2.Text += textBox1.Text[i];
}
goto start;