Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ミリ秒をカウントするタイマーが必要です - 説明: 形式: "hh\:mm\:ss\,fff"
If MilliTimer.ForMilliseconds = "00:00:01,447" Then Label1.text = "Test" End If
(コードは説明用です)
何を求めているのかを判断するのは難しいですが、「タイマー」を開始してから何ミリ秒が経過したかをテストする場合は、StopWatchクラスが必要です。次のようにストップウォッチを開始できます。
StopWatch sw = new stopWatch(); sw.Start();
次に、次のように何ミリ秒が発生したかをテストできます。
if (sw.ElapsedMilliseconds > 1447)