C# StringBuilder 类的使用

  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.Diagnostics;  
  4. using System.Linq;  
  5. using System.Text;  
  6. using System.Threading.Tasks;  
  7.   
  8. namespace _05StringBuilder  
  9. {  
  10.     class Program  
  11.     {  
  12.         static void Main(string[] args)  
  13.         {  
  14.             StringBuilder sb = new StringBuilder();  
  15.             string str = null;  
  16.             //创建了一个计时器,用来记录程序运行的时间  
  17.             //00:00:00.0422166  
  18.             Stopwatch sw = new Stopwatch();  
  19.             sw.Start();//开始计时  
  20.             for (int i = 0; i < 100000; i++)  
  21.             {  
  22.                 //str += i;  
  23.                 sb.Append(i);  
  24.             }  
  25.             sw.Stop();//结束计时  
  26.             Console.WriteLine(sb.ToString());  
  27.             Console.WriteLine(sw.Elapsed);  
  28.             Console.ReadKey();  
  29.   
  30.   
  31.   
  32.   
  33.         }  
  34.     }  
  35. }  
shashou47

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: