using System; namespace ScreenConnect; public class RootBitmap : BitmapData { public RootBitmap(PixelModel pixelModel, int width, int height, int stride, IntPtr scan0) : base(pixelModel, width, height, stride, scan0) { } protected override void Dispose(bool disposing) { } }