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)

留言

這個網誌中的熱門文章

開啟cshtml檔案時,出現『並未將物件參考設定為物件執行個體』的錯誤訊息

無法設定中斷點 尚未載入符號檔

DataGridView欄位計算總合