namespace IFramework { /// /// 可回收 /// public interface IRecyclable { /// /// 是否被回收 /// bool recyled { get; } /// /// 回收 /// void Recyle(); } }