mirror of
https://gitee.com/cssfw/EasyTools.git
synced 2026-03-28 12:01:36 +08:00
default
This commit is contained in:
9
Utils/Pool/IPool.cs
Normal file
9
Utils/Pool/IPool.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace EasyTools.Utils.Pool
|
||||
{
|
||||
public interface IPool<T>
|
||||
{
|
||||
public T Get();
|
||||
|
||||
public void Return(T obj);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user