ZForge.Controls.ExplorerBar.ExpandoInfo.Dispose C# (CSharp) 메소드

Dispose() 공개 메소드

Releases all resources used by the ExpandoInfo
public Dispose ( ) : void
리턴 void
        public void Dispose()
        {
            if (this.specialBackImage != null)
            {
                this.specialBackImage.Dispose();
                this.specialBackImage = null;
            }

            if (this.normalBackImage != null)
            {
                this.normalBackImage.Dispose();
                this.normalBackImage = null;
            }
        }