AnimatGuiCtrls.Controls.ImageListDrag.Dispose C# (CSharp) Method

Dispose() public method

Clears up any resources associated with this object. Note there are only resources associated when there is a drag operation in effect.
public Dispose ( ) : void
return void
        public void Dispose()
        {
            if (!this.disposed)
            {
                CompleteDrag();
            }
            this.disposed = true;
            GC.SuppressFinalize(this);
        }