Using the .NET Core Microsoft.Extensions.Configuration is it possible to bind to a Configuration to an object that contains an array?
Microsoft.Extensions.Configuration
With recent additions to C# language it is cleaner to use the newer syntax:
var config = new ConfigurationBuilder() .AddInMemoryCollection(new Dictionary { { "Array:0", "1" }, { "Array:1", "2" }, { "Array:2", "3" }, }) .Build();