Click here to Skip to main content
15,898,745 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How to map IsolatedStorageFile as MemoryMappedFile in .NET4 C#?
Thanks in advance.
Posted
Updated 30-Jul-11 9:18am
v2

You do it the same way map any other file to memory. All you have to do is get the SpecialFolder name of the isolated storage folder, and you're off to the races.

MSDN - Environment.SpecialFolder Enumeration[^]
 
Share this answer
 
Comments
apaka 31-Jul-11 4:12am    
There is no mention of Isolated Strorage in the link you provided. Thsnks anyway.
Useful CodeProject article on Isolated Storage, "Use of Isolated Storage (A Simple Demo)," by Abhisek Sur[^].

See MSDN docs for IsolatedStorageStream[^] which include code examples in several languages for reading and writing.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900