标签:style blog color os ar for sp div on
class Program { static void Main(string[] args) { System.Diagnostics.Stopwatch sw = new System.Diagnostics.Stopwatch(); sw.Start(); for (int i = 0; i < 50000000; i++) { //Code } sw.Stop(); Console.WriteLine("Total:" + sw.ElapsedMilliseconds + "ms"); Console.ReadLine(); } }
标签:style blog color os ar for sp div on
原文地址:http://www.cnblogs.com/allen0118/p/4045705.html