I have an array of bitmaps. Now I wil copy a bitmap out the array into an single bitmap.
I create that single bitmap as
Bitmap bmp = new Bitmap( 128, 128 );
Next I copy one of the bitmaps out the arrays like
bmp = Array[4];
But this doesn't work.
Any help please