Test amacıyla bir prosedürün / işlevin / siparişin ne kadar sürede tamamlandığını bilmek istiyorum.
Yaptığım buydu ama yöntemim yanlış çünkü saniye farkı 0 ise geçen milisaniyeleri döndüremez:
Uyku değerinin 500 ms olduğuna dikkat edin, bu nedenle geçen saniye 0 olduğundan milisaniye döndüremez.
Dim Execution_Start As System.DateTime = System.DateTime.Now
Threading.Thread.Sleep(500)
Dim Execution_End As System.DateTime = System.DateTime.Now
MsgBox(String.Format("H:{0} M:{1} S:{2} MS:{3}", _
DateDiff(DateInterval.Hour, Execution_Start, Execution_End), _
DateDiff(DateInterval.Minute, Execution_Start, Execution_End), _
DateDiff(DateInterval.Second, Execution_Start, Execution_End), _
DateDiff(DateInterval.Second, Execution_Start, Execution_End) * 60))
Biri bana bunu yapmanın daha iyi bir yolunu gösterebilir mi? Belki bir ile TimeSpan
?
Çözüm:
Dim Execution_Start As New Stopwatch
Execution_Start.Start()
Threading.Thread.Sleep(500)
MessageBox.Show("H:" & Execution_Start.Elapsed.Hours & vbNewLine & _
"M:" & Execution_Start.Elapsed.Minutes & vbNewLine & _
"S:" & Execution_Start.Elapsed.Seconds & vbNewLine & _
"MS:" & Execution_Start.Elapsed.Milliseconds & vbNewLine, _
"Code execution time", MessageBoxButtons.OK, MessageBoxIcon.Information)
DateTime.Now
Yaz Saati ve Saat Dilimi sorunları nedeniyle asla matematik yapmamalısınız . Lütfen bu konudaki blog yazımı