using System; namespace Microsoft { /// /// 分配的资源释放事件接口 /// public interface IDisposed { /// /// 资源释放事件 /// event EventHandler Disposed; } }