"Isolated Storage" alternative for Windows Phone 8.1 (not silverlight)

c#, windows-phone-8

Solution

Use ApplicationData.LocalFolder (http://msdn.microsoft.com/en-us/library/windows/apps/windows.storage.applicationdata.localfolder)

Problem

I've just upgrade to VS2013 update 2, and found out that WP8.1 now has 2 version: silverlight app ( upgraded from WP8 app) and "windows metro" app , is it true? that's a bit confused @@ And when i tested the new "windows metro" (or "universal" app), I see that this kind of framework doesn't use Isolated Storage ( System.IO.IsolatedStorage) like WP8 app, so any alternative for this ?

Original source

Related problems