I have a temp image file that I open with
Bitmap CapturedImg = (Bitmap)Image.FromFile("Item/Item.bmp");
and because temp I want to replace it with another image for future use, but the program still uses this image, and I can not do anything.
How to refuse an image for replacement?
source share