public static void Main(string[] args) { Stopwatch sw = new Stopwatch(); //程序计时器 StringBuilder str = new StringBuilder(); sw.Start();for(int i=0 ;i<40000;i++){ str.Append(i);} str.ToString()Console.WriteLine(sw.Elapsed);Console.ReadKey(); }
本文共 351 字,大约阅读时间需要 1 分钟。
public static void Main(string[] args) { Stopwatch sw = new Stopwatch(); //程序计时器 StringBuilder str = new StringBuilder(); sw.Start();for(int i=0 ;i<40000;i++){ str.Append(i);} str.ToString()Console.WriteLine(sw.Elapsed);Console.ReadKey(); }
转载于:https://www.cnblogs.com/zywf/p/4501887.html