I have a BackgroundWorker that includes read/writes to IsolatedStorage. Right before the worker is run, I read from IsolatedStorage. Do I have to worry about using a Mutex, or will the worker only start once the read is completed?
//read from IsolatedStorage here
bgw.RunWorkerAsync(); //includes read/writes to IsolatedStorage