using System.Collections.Generic; namespace TestPooling.Pool { using System; [Serializable] public class PooledList : List, IPooledObject { public void Reset() { this.Clear(); } } }