Reputation: 33
I have to store data to isolated storage in memory in such a way that other applications that are run by the same user and at the same time other users running the same application cannot access the data directly. How can I do this?
Upvotes: 1
Views: 969
Reputation: 22086
Try this
IsolatedStorageFile.GetUserStoreForAssembly();
But befor to use it you need to import namespace System.IO.IsolatedStorage;
Here is more detail IsolatedStorageFile Class
Upvotes: 3