获取当前实例测量出来的总的运行时间
Stopwatch sp = new Stopwatch();
sp.Start();
//要测试的代码块
sp.Stop();
Console.WriteLine(sp.Elapsed);