I’m starting on work on my first Windows Mobile 6.5 app in C#, and I’d like to use something similar to the Properties.Settings.Default functionality in standard .Net. Is there an equivalent in Windows Mobile 6.5?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The work-horse class here is System.Configuration.ApplicationSettingsBase. Not available in the Compact Framework. With the considerable amount of glue needed to support this class, adding it yourself isn’t an option either.
The System.Xml namespace contains what you need to serialize your own “settings” object.