(C#)記錄程序運行時間

使用Stopwatch類 在使用前需要添加引用:using System.Diagnostics; static void Main(string[] args) { string s =null; //創建一個計時器,用來記錄程序的運行時間 Stopwatch sw = new Stopwatch(); sw.Start();//開始計時 for (int i = 0; i < 100; i++
相關文章
相關標籤/搜索