mirror of
https://gitee.com/cssfw/EasyTools.git
synced 2026-03-28 03:51:36 +08:00
10 lines
140 B
C#
10 lines
140 B
C#
namespace EasyTools.Utils.Pool
|
|
{
|
|
public interface IPool<T>
|
|
{
|
|
public T Get();
|
|
|
|
public void Return(T obj);
|
|
}
|
|
}
|