/// <summary> /// 实现销毁接口,防止没有调用Close方法 /// </summary> public void Dispose() { if (infoCodeList != null && infoCodeList.Count > 0) { LocalInfoHelper.RevokeInfo(this); } }
/// <summary> /// 信息功能关闭 /// </summary> public void Close() { if (infoCodeList.Count > 0) { LocalInfoHelper.RevokeInfo(this); infoCodeList = null; } }