8 lines
149 B
C#
8 lines
149 B
C#
namespace QFSW.QC.Pooling
|
|
{
|
|
public interface IPool<T> where T : class, new()
|
|
{
|
|
T GetObject();
|
|
void Release(T obj);
|
|
}
|
|
} |