Safe.cs
19 lines
| 384 B
| text/x-csharp
|
CSharpLexer
/ Implab / Safe.cs
|
|
r1 | using System; | ||
| using System.Collections.Generic; | ||||
| using System.Linq; | ||||
| using System.Text; | ||||
| namespace Implab | ||||
| { | ||||
| public static class Safe | ||||
| { | ||||
| public static void Dispose<T>(ref T obj) where T : IDisposable | ||||
| { | ||||
| if (obj != null) | ||||
| { | ||||
| obj.Dispose(); | ||||
| obj = default(T); | ||||
| } | ||||
| } | ||||
| } | ||||
| } | ||||
