Пример #1
0
 public void Recycle()
 {
     PoolFilters.Recycle(this);
 }
Пример #2
0
 public static void Recycle <T>(ref T system) where T : class, IFilterBase
 {
     PoolFilters.Recycle(system);
     system = null;
 }
Пример #3
0
 public static void Recycle <T>(ref T system) where T : class
 {
     PoolFilters.Recycle(system);
     system = default;
 }