https://github.com/tmyt/appsettingsutil
https://github.com/tmyt/appsettingsutil
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tmyt/appsettingsutil
- Owner: tmyt
- Created: 2015-08-08T16:31:06.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-08-08T16:39:26.000Z (almost 10 years ago)
- Last Synced: 2025-01-11T22:18:50.819Z (6 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); } }
}
```