StopWatch

摘要:StopWatch

在前一篇Performance Count我們提到用Win32 API來取得程式碼經過的時間,在.Net framework中也提供了StopWatch類別供使用,下面是簡單的使用範例

  1. Dim A As New Stopwatch  
  2. A.Start()  
  3. Threading.Thread.Sleep(1200)  
  4. A.Stop()  
  5. MessageBox.Show(A.ElapsedMilliseconds)