Improved readability: With using, the new name comes first rather than being embedded somewhere in a declaration. Generality: using can be used for template ali...
在 .NET 运行时 GC 会负责清理内存,但是我们有时候需要手动清理资源(比如非托管资源不再使用的时候),在以前对于实现了 IDisposable 接口的对象,我们会使用 using 语句来清理掉。例如如下代码:...