Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tmyt/appsettingsutil
https://github.com/tmyt/appsettingsutil
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tmyt/appsettingsutil
- Owner: tmyt
- Created: 2015-08-08T16:31:06.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-08-08T16:39:26.000Z (over 9 years ago)
- Last Synced: 2024-10-12T14:12:05.639Z (3 months ago)
- Language: C#
- Size: 117 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
ApplicationSettingsUtility
===Summary
--Wrapper library for ApplicationData.Current.RoamingSettings & LocalSettings.
Usage
--```cs
public class AppConfig : AppConfigBase
{
[LocalValue]
public string StringValue { get { return GetValue(); } set { SetValue(value); } }public string RoamingStringValue { get { return GetValue(); } set { SetValue(value); } }
}
```