Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tmyt/appsettingsutil


https://github.com/tmyt/appsettingsutil

Last synced: about 2 months ago
JSON representation

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); } }
}
```