摘要:StopWatch
在前一篇Performance Count我們提到用Win32 API來取得程式碼經過的時間,在.Net framework中也提供了StopWatch類別供使用,下面是簡單的使用範例
- Dim A As New Stopwatch
- A.Start()
- Threading.Thread.Sleep(1200)
- A.Stop()
- MessageBox.Show(A.ElapsedMilliseconds)
摘要:StopWatch
在前一篇Performance Count我們提到用Win32 API來取得程式碼經過的時間,在.Net framework中也提供了StopWatch類別供使用,下面是簡單的使用範例