摘要: 本篇通过一小段代码的console程序来进行性能的分析以及改进、直到后面的改进前、改进后性能比较结果。先看console代码(源代码下载):static void Main(string[] args) { int i = 10000; while(i-->0) { Core c=new Core(); c.Process(DateTime.Now.ToString()); } }public class Core ... 阅读全文
posted @ 2013-04-19 10:48 McKay 阅读(16479) 评论(13) 推荐(47) 编辑