I'm having frustrating problems with files being locked using VS beta 2.
If I do for example,
I get an IOException, as the file is supposedly "in use by another process".
Is this a known issue in the beta? Or am I doing something wrong?
Thanks
If I do for example,
Code:
Bitmap bmp = new Bitmap(Image.FromFile("image.jpg"));
bmp.Dispose();
FileInfo file = new FileInfo("image.jpg");
file.Delete();
Is this a known issue in the beta? Or am I doing something wrong?
Thanks