##// END OF EJS Templates
fixed dispatch pool race condition
fixed dispatch pool race condition

File last commit:

r2:aa367305156b default
r24:ee04e1fa78da default
Show More
Safe.cs
20 lines | 424 B | text/x-csharp | CSharpLexer
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 : class
{
var disp = obj as IDisposable;
if (disp != null)
{
disp.Dispose();
obj = default(T);
}
}
}
}