Since there is no default configuration file In a WP7 app, what is the best way to store the configuration values, e.g. DB connection strings, API Urls. I want these values to be available easily and also updated easily.
Thanks
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.
If the values are simple you could store them in the IsolatedStorageSettings class.
If they get more complex, you could store them in a file (again in IsolatedStorage) with default values from within the code.