I have an appsettings.json file which looks like this:
{ \"someSetting\": { \"subSettings\": [ \"one\", \"two\",
Assuming your appsettings.json looks like this:
appsettings.json
{ "foo": { "bar": [ "1", "2", "3" ] } }
You can extract the list items like so:
Configuration.GetSection("foo:bar").Get>()