ARCed.Core.ColorWheel.IDisposable C# (CSharp) 메소드

IDisposable() 공개 메소드

public IDisposable ( ) : void
리턴 void
        void IDisposable.Dispose()
        {
            if (this._colorImage != null)
                this._colorImage.Dispose();
            if (this._colorRegion != null)
                this._colorRegion.Dispose();
            if (this._brightnessRegion != null)
                this._brightnessRegion.Dispose();
            if (this._graphics != null)
                this._graphics.Dispose();
        }