i will need to store 3 tables of data
instead of implementing an entire database backend, i just want to store the record for these tables in application.settings
has anyone done this before?
i dont care about security
is it advisable to do it with application settings? how else would you do it?
perhaps storing a matrix in application.settings would be OK?
Yes; this is possible.
You can make a (Typed) DataSet, then call
WriteXmlinto aStringWriterand put the string into the Settings object.