I tried to create a file like this:
using (File.Create("somefile"))
{
//nothing here...
};
and it threw "The process cannot access the file because it is being used by another process". It happened only once. How is this possible at all? How can another process use a file that is not existing yet? ;D Or there is something I don't know\understand?