using System; namespace IFramework { /// /// 对象池接口 /// public interface IObjectPool:IDisposable { /// /// 数量 /// int count { get; } /// /// 类型 /// Type type { get; } /// /// 回收 /// /// /// void Set(object obj,IEventArgs args); } }