事前定義された時間が経過した後、コードの実行を繰り返そうとしていますが、スレッドを使用して混乱させたくありません。以下のコードは良い習慣ですか?
Stopwatch sw = new Stopwatch(); // sw constructor
EXIT:
// Here I have my code
sw.Start();
while (sw.ElapsedMilliseconds < 100000)
{
// do nothing, just wait
}
System.Media.SystemSounds.Beep.Play(); // for test
sw.Stop();
goto EXIT;