Isolated Storage
Isolated storage allows applications to store data on a per-user basis in a safe and consistent way. The .NET Framework uniquely identifies applications or assemblies and uses this identity to create a directory where the application can safely write data.
Caution
Isolated storage is not suitable for storing secure or confidential data. The .NET Framework enforces isolation for managed code, but unmanaged code and code with high system trust are able to access the files in the store.
The isolated storage mechanism is the cross-platform equivalent of storing data in the Windows registry. The programmer doesn’t have to be aware of the identity of the current user or the details of where application data will be stored. This section ...
Get C# for Java Developers now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.