Exemplo n.º 1
0
 public static void To(T target, Pooling <T> customPool = default)
 {
     //"pool type error".Log((target != default) && (typeof(T).FullName != target.GetType().FullName), target.GetType().FullName);
     CheckPoolNull(customPool);
     instance.ToPool(target);
 }
Exemplo n.º 2
0
 public static void To(T target, Pooling <T> customPool = null)
 {
     TesterBaseApp.Instance.LogWhenPoolingItemDoNotMatch(ref target);
     CheckPoolNull(customPool);
     instance.ToPool(target);
 }