using System; using System.Collections.Generic; namespace XUtliPoolLib { public class ObjectPoolCache { public static readonly List s_AllPool = new List(); public static void Clear() { ObjectPoolCache.s_AllPool.Clear(); } } }