Looking for the most painless non-RDBMS storage method in C#

Posted by NateD on Stack Overflow See other posts from Stack Overflow or by NateD
Published on 2010-03-29T15:11:50Z Indexed on 2010/03/29 15:23 UTC
Read the original article Hit count: 348

I'm writing a simple program that will run entirely client-side. (Desktop programming? do people still do that?) and I need a simple way to store trivial amounts of data in a structured form, but really don't see any need to use a database system. What's more, some of the data needs to be serialized and passed around to different users, like some kind of "file" or perhaps a "document". (has anyone ever done that before?)

So, I've looked at using .Net DataSets, LINQ, direct XML manipulation, and they all seem like they would get the job done, but I would like to know before I dive into any of them if there's one method that is generally regarded as easier to code than others. As I said, the amount of data to be stored is trivial, even if one hundred people all used the same machine we're not talking about more than 10 MB, so performance is not as large a concern as is codeability/maintainability. Thank you all in advance!

© Stack Overflow or respective owner

Related posts about c#

Related posts about data-storage