I have a file, application.conf, that contains this code:
...
features{
    dev{
        features = ["feature1","feature2", "feature4"]
    }
}
...
How can I access that list of features from a C# file? I need to somehow import the .conf file into the C# file but can't find any way to do it.
