摘要: (15)Reduce memory leaks dramatically with the “using” statement招数15:显式的使用using语句减少内存泄露If a type implements IDisposable, wrap the use of it in a “using” statement, so that it automatically disposes of objects properly when the block exits.如果一个类实现了IDisposable接口,使用using语句包裹这个类型,以便离开语句块就能自动的释放恰当的对象。 阅读全文
posted @ 2013-07-15 13:31 安布雷拉 阅读(310) 评论(0) 推荐(0) 编辑