.net - c#: storing lots of data in my.settings -


I will need to store 3 tables of data

instead of implementing a complete database backend , I just

I did not care about security

Is it appropriate to do it?

With the application settings?

Yes; it's possible.

You can create a (type) dataset, then call WriteXml in a StringWriter and put the string in the settings object . / P>


Comments