I'm trying to add settings to the C # project (Settings), but there are none on the project tab. How to add them there?
|
1 answer
Judging by the snapshot, the project is for Windows Mobile, which means it is a Compact Framework. CF, unfortunately, does not include System.Configuration. Therefore, the options are:
- store settings in the registry
- create your class and serialize it (for example, using the XmlSerializer)
- use a third-party library (such as nini ).
|