I am using the .NET Compact Framework 3.5 and I am trying to determine if there is a standard way of storing settings that the user can change in my application. I know the Compact 3.5 SQL database, but I try to avoid this if I can, in order to avoid a dependency that is not already installed on the users mobile device (I already need to worry about the 3.5.NET Framework, so I try to avoid any other dependencies , if I can).
I saw that the old .config file (via System.Configuration.ConfigurationSettings.AppSettings) is deprecated and apparently not supported by the Compact Framework.
Besides filling it in the xml file stored in / Application Data / My App / and analyzing it, are there any built-in libraries for this type of function?
I do not see much online or on this site about this. Mostly compact frame solutions.
source share