You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Simple to use and flexible as ever, JsonSettings is a continuation of SimpleSettings.
Creating a settings file for your project
Using Nuget,
PM> Install-Package JsonSettings
then create a new Settings object.
Settings = new Settings("C:{USER}\location\of\file");
What's cool about JsonSettings?
- Comments ('//' and '/**/' typed)
- Lightweight and non-File-IO based. This means instead of constantly reading and writing from
the disk, it reads once to an object, then edits the object. No un-needed saves occure to the file.
When you want the settings saved, just run Settings.Save();