public T Get <T>(T reference) where T : class, new () { return(PoolCollections <T> .GetPool(reference).Get()); }
public void Recycle <T>(T reference) where T : class, new () { PoolCollections <T> .GetPool(reference).Recycle(reference); }
public T Get <T>() where T : class, new () { return(PoolCollections <T> .GetPool().Get()); }