BiomePainter.BitmapSelector.Layer.Resize C# (CSharp) Метод

Resize() публичный Метод

public Resize ( int width, int height ) : void
width int
height int
Результат void
        public void Resize(int width, int height)
        {
            if (Image != null)
                Image.Dispose();
            Image = new Bitmap(width, height);
        }