C# Windows Forms / При выполнении цикла форма пропадает

If (errors == 0)
{
int NewForm = 0;
while (1 < 10)
{
DateTime sec2 = DateTime.Now;
int counter2 = Convert.ToInt32(sec2.Second);
if (counter2 - counter == 5)
{
Form1 f1 = new Form1();
f1.Show();
Visible = false;
break;
}
else
{
continue;
}
}
}

Дак брек остановил цикл

Добавить комментарий