I'm looking for some simple way to save user data to file in C #.
In Java I always use the Properties class.
I'm looking for something similar in C #, I've already tried and found some answers but I still could not solve my problem.
For example here is spoken much of "System.Configuration.ConfigurationManager" and in other answers talks about "Properties.Settings".
In msdn.microsoft.com has some examples, but I do not have the "ConfigurationManager" class.
I'm using:
using System.Configuration;
But for now these classes are not available!
I'm using .NET 3.5 and I'm developing for Windows CE and Windows Mobile.
Someone has already gone through this and can help me?