What is the best way to write an object to a file in MonoDroid so that it can be be reloaded the next time the application runs?
I'm running into problem after problem trying to use XmlSerializer, and I have been unable to get Java's ObjectOutputStream to work.
Is there any other ways to do this (short of manually writing everything out to XML) or will I have to keep trying to get XmlSerializer to work?
If there is, please provide an example. Thanks.