#region Dispose
        /// <summary> 
        /// 清理所有正在使用的资源。
        /// </summary>
        /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);

            LogUtil.LogInfo("坐席程序关闭");
            
        }
        #endregion

  

base.Dispose(disposing);以及以上是系统资源的释放。
下面是应该处理相关业务所需资源。

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-28
  • 2021-06-05
猜你喜欢
  • 2022-12-23
  • 2022-01-27
  • 2022-12-23
  • 2021-11-01
  • 2022-02-07
  • 2022-12-23
相关资源
相似解决方案