我希望根据秒表值设置我的计时器间隔。秒表计算函数的执行时间,此执行时间应用于我的计时器间隔。
Timer t = new Timer(timercallbackfunc, null, 0, elapsedtime);
请提供一些代码示例。
答案 0 :(得分:3)
你的意思是这样吗?
Stopwatch stopwatch = new Stopwatch();
stopwatch.Start();
...
Timer t = new Timer(timercallbackfunc, null, 0, stopwatch.ElapsedMilliseconds);