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