using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Implab { public static class Safe { public static void Dispose(ref T obj) where T : IDisposable { if (obj != null) { obj.Dispose(); obj = default(T); } } } }