Exemplo n.º 1
0
 public static T Get <T>() where T : class, new() =>
 InternalObjectsPool <T> .Get();
Exemplo n.º 2
0
 public static void Return <T>(T instance) where T : class, new() =>
 InternalObjectsPool <T> .Return(instance);