I\'m creating an application (Windows Form) that allows the user to take a screenshot based on the locations they choose (drag to select area). I wanted to add a little \"pr
Use the Bitmap object like this:
using (Bitmap bmpImage = new Bitmap(img)) { // Do something with the Bitmap object }