Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 609 Bytes

README.md

File metadata and controls

30 lines (20 loc) · 609 Bytes

EasyConfig

License NuGet

Tutorial

Create a config class or record:

public class Config
{
    public string Prop { get; set; }
}

Then you can fetch the data from the fille like this:

var config = ConfigurationManager.Get<Config>();

When there is a need to save the config you can do it like this:

ConfigurationManager.Save(config);

That's it, really easy to use like the name.