最近、ファイルの後ろに不適切なログを記録していた Windows アプリケーションの解決策を探しています。フォームの回答で与えられた可能性のあるヒントに基づいてサンプルアプリケーションを作成しました....
これがサンプルコードとその出力です....
private Timer tmr = new Timer();
private Stopwatch ss;
void tmr_Tick( object sender, EventArgs e )
{
WriteData();
}
private void button1_Click( object sender, EventArgs e )
{
ss = new Stopwatch();
ss.Start();
tmr.Interval = 1;
tmr.Tick += new EventHandler( tmr_Tick );
tmr.Start();
WriteData();
}
void WriteData()
{
Console.WriteLine(ss.ElapsedMilliseconds);
}
出力: 0 19 29 49 69 79 99 109 122 142 162 172 192 202 222 232 252 282 272 294 314 334 341
このコードの精度を高めるにはどうすればよいですか....????