IsolatedStorageFile a = IsolatedStorageFile.GetMachineStoreForAssembly(); IsolatedStorageFileStream b = new IsolatedStorageFileStream("MyState.config", FileMode.OpenOrCreate, a); StreamWriter c = new StreamWriter(b); c.WriteLine("Hello World!"); c.Close(); foreach (var storeFile in a.GetFileNames("*")) { Console.WriteLine(storeFile); } IsolatedStorageFileStream d = new IsolatedStorageFileStream("MyState.config", FileMode.Open, a); StreamReader e = new StreamReader(d); Console.WriteLine(e.ReadToEnd()); e.Close();