Mercurial > pub > ImplabNet
annotate Implab/Safe.cs @ 31:dafaadca5b9f
minor cleanup
author | cin |
---|---|
date | Mon, 07 Apr 2014 18:17:00 +0400 |
parents | aa367305156b |
children | 2c332a9c64c0 |
rev | line source |
---|---|
1 | 1 using System; |
2 using System.Collections.Generic; | |
3 using System.Linq; | |
4 using System.Text; | |
5 | |
6 namespace Implab | |
7 { | |
8 public static class Safe | |
9 { | |
31 | 10 public static void Dispose<T>(T obj) where T : class |
1 | 11 { |
2 | 12 var disp = obj as IDisposable; |
13 if (disp != null) | |
14 disp.Dispose(); | |
1 | 15 } |
16 } | |
17 } |