Hi I have to store some hidden information in Isolated space. For that I am using System.IO.Isolated class like
IsolatedStorageFile isf = System.IO.Isola
I changed IsolatedStorage file to
using (IsolatedStorageFile isoStore = IsolatedStorageFile.GetMachineStoreForAssembly()) { }
And this work.