/// <summary> /// Prefills the pool to capacity. /// </summary> static public void Prewarm <T>(this IPool <T> inThis) where T : class { inThis.Prewarm(inThis.Capacity); }