1
I am looking for some simple way to save user data to file in c#.
In Java I always use the class Properties.
I’m looking for something similar in C#, I already searched and found some answers but still could not solve my problem.
For example here says a lot about "System.Configuration.Configurationmanager" and in other answers talks about "Properties.Settings".
In msdn.microsoft.com has even some examples, but I don’t have the class "Configurationmanager".
I’m using:
using System.Configuration;
Only for min these classes are not available!
I am using . net 3.5 and am developing for Windows CE and Windows Mobile.
Someone’s been there and can help me?
I’m already referencing System.Configuration
– AndersonSouza