1. 程式人生 > >計時(.NET)

計時(.NET)

net bsp seconds cnblogs format watch sys con str

using System.Diagnostics;

  // 開始計時
  Stopwatch stopwatch = new Stopwatch();
  stopwatch.Start();
  // 要計時的操作

  // 停止計時   stopwatch.Stop();   // 顯示統計結果   string Stastics = String.Format("用時{0}毫秒", stopwatch.ElapsedMilliseconds);

計時(.NET)