What is the difference between System.Drawing.Image and System.Drawing.Bitmap?
问题 I am confused what's the different between System.Drawing.Image and System.Drawing.Bitmap Can someone explain the major difference between those two types ? And Why to use System.Drawing.Bitmap instead of System.Drawing.Image ? 回答1: Bitmap inherits from Image : System.Drawing.Bitmap : System.Drawing.Image { } Image is an abstract class, this means: The abstract modifier indicates that the thing being modified has a missing or incomplete implementation. Bitmap is a sealed class, this means: