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