ImageProcessor.Imaging.FastBitmap.UnlockBitmap C# (CSharp) Method

UnlockBitmap() private method

Unlocks the bitmap from system memory.
private UnlockBitmap ( ) : void
return void
        private void UnlockBitmap()
        {
            // Copy the RGB values back to the bitmap and unlock the bitmap.
            this.bitmap.UnlockBits(this.bitmapData);
            this.bitmapData = null;
            this.pixelBase = null;
        }