using System; using System.Collections.Generic; namespace ETHotfix { public class ObjectPool { private readonly Dictionary> dictionary = new Dictionary>(); public Disposer Fetch(Type type) { Queue queue; if (!this.dictionary.TryGetValue(type, out queue)) { queue = new Queue(); this.dictionary.Add(type, queue); } Disposer obj; if (queue.Count > 0) { obj = queue.Dequeue(); obj.IsDisposed = false; obj.IsFromPool = true; return obj; } obj = (Disposer)Activator.CreateInstance(type); return obj; } public T Fetch() where T : Disposer { T t = (T)this.Fetch(typeof(T)); return t; } public void Recycle(Disposer obj) { Type type = obj.GetType(); Queue queue; if (!this.dictionary.TryGetValue(type, out queue)) { queue = new Queue(); this.dictionary.Add(type, queue); } queue.Enqueue(obj); } } }