In the code-behind of a page of Windows 8.1 app, I create a SerializableDictionary:
private static SerializableDictionary<string, Persona> elenco =
new SerializableDictionary<string, Persona>();
where, the SerializableDictionary
class is this. How can I save elenco
using Windows.Storage.ApplicationData
object and his RoamingSettings
property? (If it helps, even changing the declarations private static
).