Init
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
namespace QFSW.QC.Pooling
|
||||
{
|
||||
public interface IPool<T> where T : class, new()
|
||||
{
|
||||
T GetObject();
|
||||
void Release(T obj);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user