예제 #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;
 }