I'm a bit new to programing a windows store app.So the question is how can I save an instance of a class in to an xml or binary file.I tried some code but it isn't working.
Hope that some one can steer me in the right direction .
I'm a bit new to programing a windows store app.So the question is how can I save an instance of a class in to an xml or binary file.I tried some code but it isn't working.
Hope that some one can steer me in the right direction .
You can use Windows.Storage
to store any file, the usage is like IO operation. MSDN
IsolatedStorage
is similar to this for Windows Phone apps.
You can serialize your instance by using this code
Next step is to save the serialized instance text to a file.
Now there should be a file in your AppPackage-Local-Folder called
instance.txt
which contains the current instance serialized to xml.