I was thinking about something like SharedPreferences from android in c#. I mean I want to save value one variable even if I close application and run again. I want to save this value every time when I close application and run again. How I can do that? I know that is possible when I am using data base but maybe is any other solution?
|
closed as not a real question by Lloyd, J0HN, PLB, Adriano, corsiKa Nov 22 '12 at 15:35
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
In C# you can use User or Application Settings. The user settings are different per user while with the application settings you can set one value for all users. To set initial Values you have an editor or you can write XML directly:
To get the value in your code you can write this:
On this MSDN-Tutorial you find all you need to start with Settings in C#. |
|||
|
|
|
it depneds on the architecture of your application, you may have embedded databases like SQL Server CE, you may use the file system (having your own configuration file) you may use the registry editor, you may use the cloud to store user values globally, there are a lot of options depending on your needs and your criteria |
|||
|
|
|
IsolatedStorage or WindowsStorage (in case of Windows Store Apps) are kind of alternative to SharedPreferences in C#. An excerpt from article Windows Phone: Storing Data and Preferences
|
|||
|
|