Example #1
0
 public static T Get <T>() where T : IRecyclable, new()
 {
     return(Pool <T> .Get());
 }
Example #2
0
 public static void Return <T>(T val) where T : IRecyclable, new()
 {
     Pool <T> .Return(val);
 }