Ejemplo n.º 1
0
 public void Recycle()
 {
     PoolFilters.Recycle(this);
 }
Ejemplo n.º 2
0
 public static void Recycle <T>(ref T system) where T : class, IFilterBase
 {
     PoolFilters.Recycle(system);
     system = null;
 }
Ejemplo n.º 3
0
 public static void Recycle <T>(ref T system) where T : class
 {
     PoolFilters.Recycle(system);
     system = default;
 }