最佳答案
As far as I can tell, there are two ways of copying a bitmap.
Bitmap.Clone()
Bitmap A = new Bitmap("somefile.png");
Bitmap B = (Bitmap)A.Clone();
new Bitmap()
Bitmap A = new Bitmap("somefile.png");
Bitmap B = new Bitmap(A);
How do these approaches differ? I'm particularly interested in the difference in terms of memory and threading.