コード例 #1
0
ファイル: Pool.cs プロジェクト: BeauPrime/BeauPools
 /// <summary>
 /// Prefills the pool to capacity.
 /// </summary>
 static public void Prewarm <T>(this IPool <T> inThis) where T : class
 {
     inThis.Prewarm(inThis.Capacity);
 }