I need to save an object that I have in my program (this object stores data) to the hard drive so i can load it next time the program starts
I have tried using serialization and xml file output but I cant seem to get this working since the data I have is not of the ‘string’ object type.
I considered using file open/put/get but MSDN recommends against this since it is much more inefficient than serialization.
Any simple load/save functions that will accomplish my goal?
Thanks in advance
Martin
I figured out that I needed to convert the object to binary data before serialization.
For others, here are my functions