C#中测量消耗的内存和时间的方法
摘要:
1、内存var start = GC.GetTotalMemory(true); // todo:待测量的操作GC.Collect(); GC.WaitForFullGCComplete(); var end = GC.GetTotalMemory(true); var useMemory = end - start;2、时间var watch = new Stopwatch(); watch.Start(); // todo:待测量的操作watch.Stop(); var useTime = watch.ElapsedMilliseconds; 阅读全文
posted @ 2013-06-06 08:42 yao2yao4 阅读(590) 评论(0) 推荐(0) 编辑