C# using语句 - zLulus/My_Note GitHub Wiki

使用using 语句的类必须实现IDisposable 接口
using 语句可确保调用 Dispose
using 针对非托管资源,实现手动强制释放

参考资料

using 语句(C# 参考)